github.com/jimmyx0x/go-ethereum@v1.10.28/cmd/evm/testdata/10/readme.md (about) 1 ## EIP-1559 testing 2 3 This test contains testcases for EIP-1559, which were reported by Ori as misbehaving. 4 5 ``` 6 [user@work evm]$ dir=./testdata/10 && ./evm t8n --state.fork=London --input.alloc=$dir/alloc.json --input.txs=$dir/txs.json --input.env=$dir/env.json --output.alloc=stdout --output.result=stdout 2>&1 7 INFO [05-09|22:11:59.436] rejected tx index=3 hash=db07bf..ede1e8 from=0xd02d72E067e77158444ef2020Ff2d325f929B363 error="gas limit reached" 8 ``` 9 Output: 10 ```json 11 { 12 "alloc": { 13 "0x1111111111111111111111111111111111111111": { 14 "code": "0xfe", 15 "balance": "0x10000000000", 16 "nonce": "0x1" 17 }, 18 "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b": { 19 "balance": "0x10000000000", 20 "nonce": "0x1" 21 }, 22 "0xd02d72e067e77158444ef2020ff2d325f929b363": { 23 "balance": "0xff5beffffc95", 24 "nonce": "0x4" 25 } 26 }, 27 "result": { 28 "stateRoot": "0xf91a7ec08e4bfea88719aab34deabb000c86902360532b52afa9599d41f2bb8b", 29 "txRoot": "0xda925f2306a52fa24c15d5cd212d736ee016415fd8dd0c45fd368de7917d64bb", 30 "receiptRoot": "0x439a25f7fc424c10fb1f89800e4aa1df74156b137239d9ac3eaa7c911c353cd5", 31 "logsHash": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347", 32 "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 33 "receipts": [ 34 { 35 "type": "0x2", 36 "root": "0x", 37 "status": "0x0", 38 "cumulativeGasUsed": "0x10000001", 39 "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 40 "logs": null, 41 "transactionHash": "0x88980f6efcc5358d9c359663e7b9414722d430497637340ea056b076bc206701", 42 "contractAddress": "0x0000000000000000000000000000000000000000", 43 "gasUsed": "0x10000001", 44 "blockHash": "0x0000000000000000000000000000000000000000000000000000000000000000", 45 "transactionIndex": "0x0" 46 }, 47 { 48 "type": "0x2", 49 "root": "0x", 50 "status": "0x0", 51 "cumulativeGasUsed": "0x20000001", 52 "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 53 "logs": null, 54 "transactionHash": "0xd7bf3886f4e2aef74d525ae072c680f3846f550254401b67cbfda4a233757582", 55 "contractAddress": "0x0000000000000000000000000000000000000000", 56 "gasUsed": "0x10000000", 57 "blockHash": "0x0000000000000000000000000000000000000000000000000000000000000000", 58 "transactionIndex": "0x1" 59 }, 60 { 61 "type": "0x2", 62 "root": "0x", 63 "status": "0x0", 64 "cumulativeGasUsed": "0x30000001", 65 "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 66 "logs": null, 67 "transactionHash": "0x50308296760f01f1eeec7500e9e73cad67469249b1f59e9a9f55e6625a4923db", 68 "contractAddress": "0x0000000000000000000000000000000000000000", 69 "gasUsed": "0x10000000", 70 "blockHash": "0x0000000000000000000000000000000000000000000000000000000000000000", 71 "transactionIndex": "0x2" 72 } 73 ], 74 "rejected": [ 75 3 76 ] 77 } 78 } 79 ```