eth/catalyst: wire up slotnum for testing_buildBlockV1 (#34721)

Wire up slotnum for `testing_buildBlockV1` for `bal-devnet-3` branch

We are experimenting testing block building through hive via EELS (PR
[here](https://github.com/ethereum/execution-specs/pull/2679)). This is
the only change needed to test against `bal-devnet-3` - missing slotnum.
This commit is contained in:
felipe 2026-04-14 17:01:48 -06:00 committed by GitHub
parent 189bbd91b4
commit c30c846ce8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -74,6 +74,7 @@ func (api *testingAPI) BuildBlockV1(parentHash common.Hash, payloadAttributes en
Random: payloadAttributes.Random,
Withdrawals: payloadAttributes.Withdrawals,
BeaconRoot: payloadAttributes.BeaconRoot,
SlotNum: payloadAttributes.SlotNumber,
}
return api.eth.Miner().BuildTestingPayload(args, txs, buildEmpty, extra)
}