* add blobGasUsed calculation

* enable old tests

* add blob tests in kurtosis

* add blobGasUsed validation

* revert

* introduce blobs in test

* fix: kzg setup

* prevent regression
This commit is contained in:
Advaita Saha 2024-10-22 07:37:43 +05:30 committed by GitHub
parent 070f117d3c
commit c9f97e6cd6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 81 additions and 64 deletions

View File

@ -20,11 +20,12 @@ additional_services:
- tx_spammer - tx_spammer
- assertoor - assertoor
- beacon_metrics_gazer - beacon_metrics_gazer
- blob_spammer
mev_type: null mev_type: null
assertoor_params: assertoor_params:
image: "ethpandaops/assertoor:latest" image: "ethpandaops/assertoor:latest"
run_stability_check: false run_stability_check: false
run_block_proposal_check: true run_block_proposal_check: true
run_transaction_test: true run_transaction_test: true
run_blob_transaction_test: false run_blob_transaction_test: true
run_opcodes_transaction_test: true run_opcodes_transaction_test: true

View File

@ -204,6 +204,11 @@ proc vmExecGrabItem(pst: var TxPacker; item: TxItemRef): GrabResult
return ContinueWithNextAccount return ContinueWithNextAccount
pst.numBlobPerBlock += item.tx.versionedHashes.len pst.numBlobPerBlock += item.tx.versionedHashes.len
let blobGasUsed = item.tx.getTotalBlobGas
if vmState.blobGasUsed + blobGasUsed > MAX_BLOB_GAS_PER_BLOCK:
return ContinueWithNextAccount
vmState.blobGasUsed += blobGasUsed
# Verify we have enough gas in gasPool # Verify we have enough gas in gasPool
if vmState.gasPool < item.tx.gasLimit: if vmState.gasPool < item.tx.gasLimit:
# skip this transaction and # skip this transaction and

View File

@ -9,11 +9,14 @@
# according to those terms. # according to those terms.
import import
std/tables, std/[tables, math],
eth/common/keys, eth/common/keys,
results, unittest2, results,
unittest2,
../hive_integration/nodocker/engine/tx_sender,
../nimbus/db/ledger, ../nimbus/db/ledger,
../nimbus/core/chain, ../nimbus/core/chain,
../nimbus/core/eip4844,
../nimbus/[config, transaction, constants], ../nimbus/[config, transaction, constants],
../nimbus/core/tx_pool, ../nimbus/core/tx_pool,
../nimbus/core/tx_pool/tx_desc, ../nimbus/core/tx_pool/tx_desc,
@ -29,8 +32,7 @@ const
repoDir = [".", "customgenesis"] repoDir = [".", "customgenesis"]
genesisFile = "merge.json" genesisFile = "merge.json"
type type TestEnv = object
TestEnv = object
nonce: uint64 nonce: uint64
chainId: ChainId chainId: ChainId
vaultKey: PrivateKey vaultKey: PrivateKey
@ -59,8 +61,8 @@ proc privKey(keyHex: string): PrivateKey =
kRes.get() kRes.get()
func makeTx( func makeTx(
t: var TestEnv, recipient: Address, amount: UInt256, t: var TestEnv, recipient: Address, amount: UInt256, payload: openArray[byte] = []
payload: openArray[byte] = []): Transaction = ): Transaction =
const const
gasLimit = 75000.GasInt gasLimit = 75000.GasInt
gasPrice = 30.gwei gasPrice = 30.gwei
@ -73,28 +75,43 @@ func makeTx(
gasLimit: gasLimit, gasLimit: gasLimit,
to: Opt.some(recipient), to: Opt.some(recipient),
value: amount, value: amount,
payload : @payload payload: @payload,
) )
inc t.nonce inc t.nonce
signTransaction(tx, t.vaultKey, eip155 = true) signTransaction(tx, t.vaultKey, eip155 = true)
func signTxWithNonce( proc createPooledTransactionWithBlob(
t: TestEnv, tx: Transaction, nonce: AccountNonce): Transaction = t: var TestEnv, recipient: Address, amount: UInt256
): PooledTransaction =
# Create the transaction
let
tc = BlobTx(
recipient: Opt.some(recipient),
gasLimit: 100000.GasInt,
gasTip: GasInt(10 ^ 9),
gasFee: GasInt(10 ^ 9),
blobGasFee: u256(1),
blobCount: 1,
blobID: 1,
)
params = MakeTxParams(chainId: t.chainId, key: t.vaultKey, nonce: t.nonce)
inc t.nonce
params.makeTx(tc)
func signTxWithNonce(t: TestEnv, tx: Transaction, nonce: AccountNonce): Transaction =
var tx = tx var tx = tx
tx.nonce = nonce tx.nonce = nonce
signTransaction(tx, t.vaultKey, eip155 = true) signTransaction(tx, t.vaultKey, eip155 = true)
proc initEnv(envFork: HardFork): TestEnv = proc initEnv(envFork: HardFork): TestEnv =
var var conf = makeConfig(
conf = makeConfig(@[ @["--custom-network:" & genesisFile.findFilePath(baseDir, repoDir).value]
"--custom-network:" & genesisFile.findFilePath(baseDir,repoDir).value
])
conf.networkParams.genesis.alloc[recipient] = GenesisAccount(
code: contractCode
) )
conf.networkParams.genesis.alloc[recipient] = GenesisAccount(code: contractCode)
if envFork >= MergeFork: if envFork >= MergeFork:
conf.networkParams.config.mergeForkBlock = Opt.some(0'u64) conf.networkParams.config.mergeForkBlock = Opt.some(0'u64)
conf.networkParams.config.terminalTotalDifficulty = Opt.some(100.u256) conf.networkParams.config.terminalTotalDifficulty = Opt.some(100.u256)
@ -106,11 +123,8 @@ proc initEnv(envFork: HardFork): TestEnv =
conf.networkParams.config.cancunTime = Opt.some(0.EthTime) conf.networkParams.config.cancunTime = Opt.some(0.EthTime)
let let
com = CommonRef.new( com =
newCoreDbRef DefaultDbMemory, CommonRef.new(newCoreDbRef DefaultDbMemory, conf.networkId, conf.networkParams)
conf.networkId,
conf.networkParams
)
chain = newForkedChain(com, com.genesisHeader) chain = newForkedChain(com, com.genesisHeader)
result = TestEnv( result = TestEnv(
@ -120,7 +134,7 @@ proc initEnv(envFork: HardFork): TestEnv =
xp: TxPoolRef.new(com), xp: TxPoolRef.new(com),
vaultKey: privKey(vaultKeyHex), vaultKey: privKey(vaultKeyHex),
chainId: conf.networkParams.config.chainId, chainId: conf.networkParams.config.chainId,
nonce: 0'u64 nonce: 0'u64,
) )
const const
@ -129,8 +143,7 @@ const
prevRandao = Bytes32 EMPTY_UNCLE_HASH # it can be any valid hash prevRandao = Bytes32 EMPTY_UNCLE_HASH # it can be any valid hash
proc runTxPoolPosTest() = proc runTxPoolPosTest() =
var var env = initEnv(MergeFork)
env = initEnv(MergeFork)
var var
tx = env.makeTx(recipient, amount) tx = env.makeTx(recipient, amount)
@ -159,10 +172,7 @@ proc runTxPoolPosTest() =
return return
blk = r.get.blk blk = r.get.blk
body = BlockBody( body = BlockBody(transactions: blk.txs, uncles: blk.uncles)
transactions: blk.txs,
uncles: blk.uncles
)
check blk.txs.len == 1 check blk.txs.len == 1
test "PoS persistBlocks": test "PoS persistBlocks":
@ -182,12 +192,11 @@ proc runTxPoolPosTest() =
check not bal.isZero check not bal.isZero
proc runTxPoolBlobhashTest() = proc runTxPoolBlobhashTest() =
var var env = initEnv(Cancun)
env = initEnv(Cancun)
var var
tx1 = env.makeTx(recipient, amount) tx1 = env.createPooledTransactionWithBlob(recipient, amount)
tx2 = env.makeTx(recipient, amount) tx2 = env.createPooledTransactionWithBlob(recipient, amount)
xp = env.xp xp = env.xp
com = env.com com = env.com
chain = env.chain chain = env.chain
@ -196,8 +205,8 @@ proc runTxPoolBlobhashTest() =
suite "Test TxPool with blobhash block": suite "Test TxPool with blobhash block":
test "TxPool jobCommit": test "TxPool jobCommit":
xp.add(PooledTransaction(tx: tx1)) xp.add(tx1)
xp.add(PooledTransaction(tx: tx2)) xp.add(tx2)
check xp.nItems.total == 2 check xp.nItems.total == 2
test "TxPool ethBlock": test "TxPool ethBlock":
@ -216,17 +225,20 @@ proc runTxPoolBlobhashTest() =
body = BlockBody( body = BlockBody(
transactions: blk.txs, transactions: blk.txs,
uncles: blk.uncles, uncles: blk.uncles,
withdrawals: Opt.some(newSeq[Withdrawal]()) withdrawals: Opt.some(newSeq[Withdrawal]()),
) )
check blk.txs.len == 2 check blk.txs.len == 2
let let
gasUsed1 = xp.vmState.receipts[0].cumulativeGasUsed gasUsed1 = xp.vmState.receipts[0].cumulativeGasUsed
gasUsed2 = xp.vmState.receipts[1].cumulativeGasUsed - gasUsed1 gasUsed2 = xp.vmState.receipts[1].cumulativeGasUsed - gasUsed1
blockValue = gasUsed1.u256 * tx1.effectiveGasTip(blk.header.baseFeePerGas).u256 + totalBlobGasUsed = tx1.tx.getTotalBlobGas + tx2.tx.getTotalBlobGas
gasUsed2.u256 * tx2.effectiveGasTip(blk.header.baseFeePerGas).u256 blockValue =
gasUsed1.u256 * tx1.tx.effectiveGasTip(blk.header.baseFeePerGas).u256 +
gasUsed2.u256 * tx2.tx.effectiveGasTip(blk.header.baseFeePerGas).u256
check blockValue == bundle.blockValue check blockValue == bundle.blockValue
check totalBlobGasUsed == blk.header.blobGasUsed.get()
test "Blobhash persistBlocks": test "Blobhash persistBlocks":
let rr = chain.importBlock(EthBlock.init(blk.header, body)) let rr = chain.importBlock(EthBlock.init(blk.header, body))
@ -276,12 +288,12 @@ proc runTxHeadDelta(noisy = true) =
block: block:
for n in 0 ..< numBlocks: for n in 0 ..< numBlocks:
for tn in 0 ..< txPerblock: for tn in 0 ..< txPerblock:
let tx = env.makeTx(recipient, amount) let tx = env.makeTx(recipient, amount)
xp.add(PooledTransaction(tx: tx)) xp.add(PooledTransaction(tx: tx))
noisy.say "***", "txDB", noisy.say "***",
"txDB",
&" n={n}", &" n={n}",
# pending/staged/packed : total/disposed # pending/staged/packed : total/disposed
&" stats={xp.nItems.pp}" &" stats={xp.nItems.pp}"
@ -298,9 +310,7 @@ proc runTxHeadDelta(noisy = true) =
return return
let blk = r.get.blk let blk = r.get.blk
let body = BlockBody( let body = BlockBody(transactions: blk.txs, uncles: blk.uncles)
transactions: blk.txs,
uncles: blk.uncles)
# Commit to block chain # Commit to block chain
check chain.importBlock(EthBlock.init(blk.header, body)).isOk check chain.importBlock(EthBlock.init(blk.header, body)).isOk
@ -383,8 +393,9 @@ proc runGetBlockBodyTest() =
check env.chain.forkChoice(currHash, currHash).isOk check env.chain.forkChoice(currHash, currHash).isOk
proc txPool2Main*() = proc txPool2Main*() =
const const noisy = defined(debug)
noisy = defined(debug)
assert loadKzgTrustedSetup().isOk, "Failed to load KZG trusted setup"
setErrorLevel() # mute logger setErrorLevel() # mute logger