Skip to content

Commit dede853

Browse files
marioevzreedsa
andauthored
Update src/ethereum_test_forks/base_fork.py
Co-authored-by: Stuart Reed <[email protected]>
1 parent 460469d commit dede853

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/ethereum_test_forks/base_fork.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -80,15 +80,15 @@ def __call__(
8080
"""
8181
Returns the intrinsic gas cost of a transaction given its properties.
8282
83-
The `calldata` parameter is the data of the transaction.
84-
The `contract_creation` parameter is whether the transaction creates a contract.
85-
The `access_list` parameter is the list of access lists for the transaction.
86-
The `authorization_list_or_count` parameter is the list of authorizations or the count of
87-
authorizations for the transaction.
88-
If `return_cost_deducted_prior_execution` parameter if set to False, the returned value
89-
is equal to the minimum gas required for the transaction to be valid. If set to True, the
90-
returned value is equal to the cost that is deducted from the gas limit before the
91-
transaction starts execution.
83+
Args:
84+
calldata: The data of the transaction.
85+
contract_creation: Whether the transaction creates a contract.
86+
access_list: The list of access lists for the transaction.
87+
authorization_list_or_count: The list of authorizations or the count of authorizations for the transaction.
88+
return_cost_deducted_prior_execution: If set to False, the returned value is equal to the minimum gas required for the transaction to be valid. If set to True, the returned value is equal to the cost that is deducted from the gas limit before the transaction starts execution.
89+
90+
Returns:
91+
Gas cost of a transaction
9292
"""
9393
pass
9494

0 commit comments

Comments
 (0)