mirror of https://github.com/hyperledger/besu
EVMTool Docker Support (#7430)
A few fixes that re-enable docker support for evm tool * evmtool is the entrypoint * turn off some noisy logging * ensure EOF respects the create flag Signed-off-by: Danno Ferrin <danno@numisight.com>pull/7438/head
parent
7433c8c25a
commit
a92fdbb44c
@ -0,0 +1,15 @@ |
||||
{ |
||||
"cli": [ |
||||
"--notime", |
||||
"--json", |
||||
"--create", |
||||
"--code", |
||||
"ef00010100040200010001040000000080000000c0de471fe5", |
||||
"--coinbase", |
||||
"4444588443C3A91288C5002483449ABA1054192B", |
||||
"--fork", |
||||
"CancunEOF" |
||||
], |
||||
"stdin": "", |
||||
"stdout": "EOF Code Invalid : STOP is only a valid opcode in containers used for runtime operations.\n" |
||||
} |
@ -0,0 +1,17 @@ |
||||
{ |
||||
"cli": [ |
||||
"--notime", |
||||
"--json", |
||||
"--code", |
||||
"ef00010100040200010001040000000080000000", |
||||
"--coinbase", |
||||
"4444588443C3A91288C5002483449ABA1054192B", |
||||
"--fork", |
||||
"CancunEOF" |
||||
], |
||||
"stdin": "", |
||||
"stdout": [ |
||||
{"pc":0,"section":0,"op":0,"gas":"0x2540be400","gasCost":"0x0","memSize":0,"stack":[],"depth":1,"refund":0,"opName":"STOP"}, |
||||
{"gasUser":"0x0","gasTotal":"0x0","output":"0x"} |
||||
] |
||||
} |
@ -0,0 +1,14 @@ |
||||
{ |
||||
"cli": [ |
||||
"--notime", |
||||
"--json", |
||||
"--code", |
||||
"ef00010100040200010009030001001404000000008000035f355f5fa15f5fee00ef00010100040200010001040000000080000000", |
||||
"--coinbase", |
||||
"4444588443C3A91288C5002483449ABA1054192B", |
||||
"--fork", |
||||
"CancunEOF" |
||||
], |
||||
"stdin": "", |
||||
"stdout": "To evaluate INITCODE mode EOF code use the --create flag\n" |
||||
} |
Loading…
Reference in new issue