From 04e762f0011bfeb25b8504eef284de21a4762db1 Mon Sep 17 00:00:00 2001 From: Marius van der Wijden Date: Fri, 13 Sep 2024 14:07:22 +0200 Subject: [PATCH] Update EIP-7623: homogenize calculation examples Merged by EIP-Bot. --- EIPS/eip-7623.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)) ) ```