plugeth/cmd/evm/testdata/13
lightclient fbdeff99ce
cmd/evm: calc base fee if parent data is present (#26051)
Currently, in order to chain together sequential valid t8n transitions the caller must manually calculate the block base fee. This PR adds support for the necessary parent fee market data to calculate the base fee for the current transition.

Concretely, env is extended to accept the following:

    parentBaseFee
    parentGasUsed
    parentGasLimit

Example usage can be found in ./cmd/evm/testdata/25.

Co-authored-by: Martin Holst Swende <martin@swende.se>
2022-10-28 12:25:37 +02:00
..
alloc.json cmd/evm: implement input txs via rlp in t8n tool (#23138) 2021-08-07 23:04:34 +02:00
env.json cmd/evm: implement input txs via rlp in t8n tool (#23138) 2021-08-07 23:04:34 +02:00
exp2.json cmd/evm: calc base fee if parent data is present (#26051) 2022-10-28 12:25:37 +02:00
exp.json cmd/evm: add tests for evm t8n (#23507) 2021-09-02 09:22:43 +02:00
readme.md cmd/evm: implement input txs via rlp in t8n tool (#23138) 2021-08-07 23:04:34 +02:00
signed_txs.rlp cmd/evm: add tests for evm t8n (#23507) 2021-09-02 09:22:43 +02:00
txs.json cmd/evm: implement input txs via rlp in t8n tool (#23138) 2021-08-07 23:04:34 +02:00

Input transactions in RLP form

This testdata folder is used to examplify how transaction input can be provided in rlp form. Please see the README in evm folder for how this is performed.