diff --git a/EIPS/eip-7623.md b/EIPS/eip-7623.md index 987088182e418..61f29191adbab 100644 --- a/EIPS/eip-7623.md +++ b/EIPS/eip-7623.md @@ -44,9 +44,9 @@ The current formula for determining the gas used per transaction, typically desc ```python tx.gasused = ( 21000 \ - + isContractCreation * (32000 + InitCodeWordGas * words(calldata)) \ + STANDARD_TOKEN_COST * tokens_in_calldata \ - + evm_gas_used + + evm_gas_used \ + + isContractCreation * (32000 + InitCodeWordGas * words(calldata)) ) ```