From 8c6784206dd63988b34d182fd994acbaade8ff60 Mon Sep 17 00:00:00 2001 From: Marius van der Wijden Date: Sun, 8 Sep 2024 22:17:51 +0200 Subject: [PATCH] Eip-7623: homogenize calculation examples --- 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)) ) ```