From 14eca5d3c1364966c4fd8858305714394c662370 Mon Sep 17 00:00:00 2001 From: Nanook Claw Date: Thu, 28 May 2026 21:33:21 +0000 Subject: [PATCH] docs: fix TransactionEnvironment docstring --- src/ethereum/forks/amsterdam/vm/__init__.py | 2 +- src/ethereum/forks/arrow_glacier/vm/__init__.py | 2 +- src/ethereum/forks/berlin/vm/__init__.py | 2 +- src/ethereum/forks/bpo1/vm/__init__.py | 2 +- src/ethereum/forks/bpo2/vm/__init__.py | 2 +- src/ethereum/forks/bpo3/vm/__init__.py | 2 +- src/ethereum/forks/bpo4/vm/__init__.py | 2 +- src/ethereum/forks/bpo5/vm/__init__.py | 2 +- src/ethereum/forks/byzantium/vm/__init__.py | 2 +- src/ethereum/forks/cancun/vm/__init__.py | 2 +- src/ethereum/forks/constantinople/vm/__init__.py | 2 +- src/ethereum/forks/dao_fork/vm/__init__.py | 2 +- src/ethereum/forks/frontier/vm/__init__.py | 2 +- src/ethereum/forks/gray_glacier/vm/__init__.py | 2 +- src/ethereum/forks/homestead/vm/__init__.py | 2 +- src/ethereum/forks/istanbul/vm/__init__.py | 2 +- src/ethereum/forks/london/vm/__init__.py | 2 +- src/ethereum/forks/muir_glacier/vm/__init__.py | 2 +- src/ethereum/forks/osaka/vm/__init__.py | 2 +- src/ethereum/forks/paris/vm/__init__.py | 2 +- src/ethereum/forks/prague/vm/__init__.py | 2 +- src/ethereum/forks/shanghai/vm/__init__.py | 2 +- src/ethereum/forks/spurious_dragon/vm/__init__.py | 2 +- src/ethereum/forks/tangerine_whistle/vm/__init__.py | 2 +- 24 files changed, 24 insertions(+), 24 deletions(-) diff --git a/src/ethereum/forks/amsterdam/vm/__init__.py b/src/ethereum/forks/amsterdam/vm/__init__.py index 11cb126ee4f..66c0f6bb5d1 100644 --- a/src/ethereum/forks/amsterdam/vm/__init__.py +++ b/src/ethereum/forks/amsterdam/vm/__init__.py @@ -109,7 +109,7 @@ class BlockOutput: @dataclass class TransactionEnvironment: """ - Items that are used by contract creation or message call. + Items that are used while processing a transaction. """ origin: Address diff --git a/src/ethereum/forks/arrow_glacier/vm/__init__.py b/src/ethereum/forks/arrow_glacier/vm/__init__.py index f53d3428ce0..e895dde93ec 100644 --- a/src/ethereum/forks/arrow_glacier/vm/__init__.py +++ b/src/ethereum/forks/arrow_glacier/vm/__init__.py @@ -86,7 +86,7 @@ class BlockOutput: @dataclass class TransactionEnvironment: """ - Items that are used by contract creation or message call. + Items that are used while processing a transaction. """ origin: Address diff --git a/src/ethereum/forks/berlin/vm/__init__.py b/src/ethereum/forks/berlin/vm/__init__.py index 85f73a618a2..e3c4202053f 100644 --- a/src/ethereum/forks/berlin/vm/__init__.py +++ b/src/ethereum/forks/berlin/vm/__init__.py @@ -85,7 +85,7 @@ class BlockOutput: @dataclass class TransactionEnvironment: """ - Items that are used by contract creation or message call. + Items that are used while processing a transaction. """ origin: Address diff --git a/src/ethereum/forks/bpo1/vm/__init__.py b/src/ethereum/forks/bpo1/vm/__init__.py index 64cb272d02b..0585c454fa1 100644 --- a/src/ethereum/forks/bpo1/vm/__init__.py +++ b/src/ethereum/forks/bpo1/vm/__init__.py @@ -95,7 +95,7 @@ class BlockOutput: @dataclass class TransactionEnvironment: """ - Items that are used by contract creation or message call. + Items that are used while processing a transaction. """ origin: Address diff --git a/src/ethereum/forks/bpo2/vm/__init__.py b/src/ethereum/forks/bpo2/vm/__init__.py index 64cb272d02b..0585c454fa1 100644 --- a/src/ethereum/forks/bpo2/vm/__init__.py +++ b/src/ethereum/forks/bpo2/vm/__init__.py @@ -95,7 +95,7 @@ class BlockOutput: @dataclass class TransactionEnvironment: """ - Items that are used by contract creation or message call. + Items that are used while processing a transaction. """ origin: Address diff --git a/src/ethereum/forks/bpo3/vm/__init__.py b/src/ethereum/forks/bpo3/vm/__init__.py index 64cb272d02b..0585c454fa1 100644 --- a/src/ethereum/forks/bpo3/vm/__init__.py +++ b/src/ethereum/forks/bpo3/vm/__init__.py @@ -95,7 +95,7 @@ class BlockOutput: @dataclass class TransactionEnvironment: """ - Items that are used by contract creation or message call. + Items that are used while processing a transaction. """ origin: Address diff --git a/src/ethereum/forks/bpo4/vm/__init__.py b/src/ethereum/forks/bpo4/vm/__init__.py index 64cb272d02b..0585c454fa1 100644 --- a/src/ethereum/forks/bpo4/vm/__init__.py +++ b/src/ethereum/forks/bpo4/vm/__init__.py @@ -95,7 +95,7 @@ class BlockOutput: @dataclass class TransactionEnvironment: """ - Items that are used by contract creation or message call. + Items that are used while processing a transaction. """ origin: Address diff --git a/src/ethereum/forks/bpo5/vm/__init__.py b/src/ethereum/forks/bpo5/vm/__init__.py index 64cb272d02b..0585c454fa1 100644 --- a/src/ethereum/forks/bpo5/vm/__init__.py +++ b/src/ethereum/forks/bpo5/vm/__init__.py @@ -95,7 +95,7 @@ class BlockOutput: @dataclass class TransactionEnvironment: """ - Items that are used by contract creation or message call. + Items that are used while processing a transaction. """ origin: Address diff --git a/src/ethereum/forks/byzantium/vm/__init__.py b/src/ethereum/forks/byzantium/vm/__init__.py index 657d2f7e6c3..7a86920dfb0 100644 --- a/src/ethereum/forks/byzantium/vm/__init__.py +++ b/src/ethereum/forks/byzantium/vm/__init__.py @@ -85,7 +85,7 @@ class BlockOutput: @dataclass class TransactionEnvironment: """ - Items that are used by contract creation or message call. + Items that are used while processing a transaction. """ origin: Address diff --git a/src/ethereum/forks/cancun/vm/__init__.py b/src/ethereum/forks/cancun/vm/__init__.py index e2214f4810f..c88737f71b8 100644 --- a/src/ethereum/forks/cancun/vm/__init__.py +++ b/src/ethereum/forks/cancun/vm/__init__.py @@ -92,7 +92,7 @@ class BlockOutput: @dataclass class TransactionEnvironment: """ - Items that are used by contract creation or message call. + Items that are used while processing a transaction. """ origin: Address diff --git a/src/ethereum/forks/constantinople/vm/__init__.py b/src/ethereum/forks/constantinople/vm/__init__.py index 657d2f7e6c3..7a86920dfb0 100644 --- a/src/ethereum/forks/constantinople/vm/__init__.py +++ b/src/ethereum/forks/constantinople/vm/__init__.py @@ -85,7 +85,7 @@ class BlockOutput: @dataclass class TransactionEnvironment: """ - Items that are used by contract creation or message call. + Items that are used while processing a transaction. """ origin: Address diff --git a/src/ethereum/forks/dao_fork/vm/__init__.py b/src/ethereum/forks/dao_fork/vm/__init__.py index 3b5007aa541..ff0e2ac5d30 100644 --- a/src/ethereum/forks/dao_fork/vm/__init__.py +++ b/src/ethereum/forks/dao_fork/vm/__init__.py @@ -80,7 +80,7 @@ class BlockOutput: @dataclass class TransactionEnvironment: """ - Items that are used by contract creation or message call. + Items that are used while processing a transaction. """ origin: Address diff --git a/src/ethereum/forks/frontier/vm/__init__.py b/src/ethereum/forks/frontier/vm/__init__.py index d2e566bde19..e3cd85bf87d 100644 --- a/src/ethereum/forks/frontier/vm/__init__.py +++ b/src/ethereum/forks/frontier/vm/__init__.py @@ -80,7 +80,7 @@ class BlockOutput: @dataclass class TransactionEnvironment: """ - Items that are used by contract creation or message call. + Items that are used while processing a transaction. """ origin: Address diff --git a/src/ethereum/forks/gray_glacier/vm/__init__.py b/src/ethereum/forks/gray_glacier/vm/__init__.py index f53d3428ce0..e895dde93ec 100644 --- a/src/ethereum/forks/gray_glacier/vm/__init__.py +++ b/src/ethereum/forks/gray_glacier/vm/__init__.py @@ -86,7 +86,7 @@ class BlockOutput: @dataclass class TransactionEnvironment: """ - Items that are used by contract creation or message call. + Items that are used while processing a transaction. """ origin: Address diff --git a/src/ethereum/forks/homestead/vm/__init__.py b/src/ethereum/forks/homestead/vm/__init__.py index 3b5007aa541..ff0e2ac5d30 100644 --- a/src/ethereum/forks/homestead/vm/__init__.py +++ b/src/ethereum/forks/homestead/vm/__init__.py @@ -80,7 +80,7 @@ class BlockOutput: @dataclass class TransactionEnvironment: """ - Items that are used by contract creation or message call. + Items that are used while processing a transaction. """ origin: Address diff --git a/src/ethereum/forks/istanbul/vm/__init__.py b/src/ethereum/forks/istanbul/vm/__init__.py index 657d2f7e6c3..7a86920dfb0 100644 --- a/src/ethereum/forks/istanbul/vm/__init__.py +++ b/src/ethereum/forks/istanbul/vm/__init__.py @@ -85,7 +85,7 @@ class BlockOutput: @dataclass class TransactionEnvironment: """ - Items that are used by contract creation or message call. + Items that are used while processing a transaction. """ origin: Address diff --git a/src/ethereum/forks/london/vm/__init__.py b/src/ethereum/forks/london/vm/__init__.py index f53d3428ce0..e895dde93ec 100644 --- a/src/ethereum/forks/london/vm/__init__.py +++ b/src/ethereum/forks/london/vm/__init__.py @@ -86,7 +86,7 @@ class BlockOutput: @dataclass class TransactionEnvironment: """ - Items that are used by contract creation or message call. + Items that are used while processing a transaction. """ origin: Address diff --git a/src/ethereum/forks/muir_glacier/vm/__init__.py b/src/ethereum/forks/muir_glacier/vm/__init__.py index 657d2f7e6c3..7a86920dfb0 100644 --- a/src/ethereum/forks/muir_glacier/vm/__init__.py +++ b/src/ethereum/forks/muir_glacier/vm/__init__.py @@ -85,7 +85,7 @@ class BlockOutput: @dataclass class TransactionEnvironment: """ - Items that are used by contract creation or message call. + Items that are used while processing a transaction. """ origin: Address diff --git a/src/ethereum/forks/osaka/vm/__init__.py b/src/ethereum/forks/osaka/vm/__init__.py index 64cb272d02b..0585c454fa1 100644 --- a/src/ethereum/forks/osaka/vm/__init__.py +++ b/src/ethereum/forks/osaka/vm/__init__.py @@ -95,7 +95,7 @@ class BlockOutput: @dataclass class TransactionEnvironment: """ - Items that are used by contract creation or message call. + Items that are used while processing a transaction. """ origin: Address diff --git a/src/ethereum/forks/paris/vm/__init__.py b/src/ethereum/forks/paris/vm/__init__.py index 40b2000ce7f..2b39a5b631d 100644 --- a/src/ethereum/forks/paris/vm/__init__.py +++ b/src/ethereum/forks/paris/vm/__init__.py @@ -81,7 +81,7 @@ class BlockOutput: @dataclass class TransactionEnvironment: """ - Items that are used by contract creation or message call. + Items that are used while processing a transaction. """ origin: Address diff --git a/src/ethereum/forks/prague/vm/__init__.py b/src/ethereum/forks/prague/vm/__init__.py index 64cb272d02b..0585c454fa1 100644 --- a/src/ethereum/forks/prague/vm/__init__.py +++ b/src/ethereum/forks/prague/vm/__init__.py @@ -95,7 +95,7 @@ class BlockOutput: @dataclass class TransactionEnvironment: """ - Items that are used by contract creation or message call. + Items that are used while processing a transaction. """ origin: Address diff --git a/src/ethereum/forks/shanghai/vm/__init__.py b/src/ethereum/forks/shanghai/vm/__init__.py index 147b1971c7d..d66c86d0e73 100644 --- a/src/ethereum/forks/shanghai/vm/__init__.py +++ b/src/ethereum/forks/shanghai/vm/__init__.py @@ -86,7 +86,7 @@ class BlockOutput: @dataclass class TransactionEnvironment: """ - Items that are used by contract creation or message call. + Items that are used while processing a transaction. """ origin: Address diff --git a/src/ethereum/forks/spurious_dragon/vm/__init__.py b/src/ethereum/forks/spurious_dragon/vm/__init__.py index f5ada743d6d..d986e74f4f2 100644 --- a/src/ethereum/forks/spurious_dragon/vm/__init__.py +++ b/src/ethereum/forks/spurious_dragon/vm/__init__.py @@ -85,7 +85,7 @@ class BlockOutput: @dataclass class TransactionEnvironment: """ - Items that are used by contract creation or message call. + Items that are used while processing a transaction. """ origin: Address diff --git a/src/ethereum/forks/tangerine_whistle/vm/__init__.py b/src/ethereum/forks/tangerine_whistle/vm/__init__.py index 3b5007aa541..ff0e2ac5d30 100644 --- a/src/ethereum/forks/tangerine_whistle/vm/__init__.py +++ b/src/ethereum/forks/tangerine_whistle/vm/__init__.py @@ -80,7 +80,7 @@ class BlockOutput: @dataclass class TransactionEnvironment: """ - Items that are used by contract creation or message call. + Items that are used while processing a transaction. """ origin: Address