forked from hyperledger/besu
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Danno Ferrin <[email protected]>
- Loading branch information
Showing
10 changed files
with
527 additions
and
35 deletions.
There are no files selected for viewing
57 changes: 57 additions & 0 deletions
57
ethereum/evmtool/src/test/resources/org/hyperledger/besu/evmtool/trace/coinbase-cold.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
"cli": [ | ||
"--notime", | ||
"--json", | ||
"--code", | ||
"4131ff", | ||
"--coinbase", | ||
"4444588443C3A91288C5002483449ABA1054192B", | ||
"--fork", | ||
"paris" | ||
], | ||
"stdin": "", | ||
"stdout": [ | ||
{ | ||
"pc": 0, | ||
"op": 65, | ||
"gas": "0x2540b91f8", | ||
"gasCost": "0x2", | ||
"memSize": 0, | ||
"stack": [], | ||
"depth": 1, | ||
"refund": 0, | ||
"opName": "COINBASE" | ||
}, | ||
{ | ||
"pc": 1, | ||
"op": 49, | ||
"gas": "0x2540b91f6", | ||
"gasCost": "0xa28", | ||
"memSize": 0, | ||
"stack": [ | ||
"0x4444588443c3a91288c5002483449aba1054192b" | ||
], | ||
"depth": 1, | ||
"refund": 0, | ||
"opName": "BALANCE" | ||
}, | ||
{ | ||
"pc": 2, | ||
"op": 255, | ||
"gas": "0x2540b87ce", | ||
"gasCost": "0x1388", | ||
"memSize": 0, | ||
"stack": [ | ||
"0x0" | ||
], | ||
"depth": 1, | ||
"refund": 0, | ||
"opName": "SELFDESTRUCT" | ||
}, | ||
{ | ||
"gasUser": "0x1db2", | ||
"gasTotal": "0x1db2", | ||
"output": "0x" | ||
} | ||
] | ||
} |
57 changes: 57 additions & 0 deletions
57
ethereum/evmtool/src/test/resources/org/hyperledger/besu/evmtool/trace/coinbase-warm.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
"cli": [ | ||
"--notime", | ||
"--json", | ||
"--code", | ||
"4131ff", | ||
"--coinbase", | ||
"4444588443C3A91288C5002483449ABA1054192B", | ||
"--fork", | ||
"shanghai" | ||
], | ||
"stdin": "", | ||
"stdout": [ | ||
{ | ||
"pc": 0, | ||
"op": 65, | ||
"gas": "0x2540b91f8", | ||
"gasCost": "0x2", | ||
"memSize": 0, | ||
"stack": [], | ||
"depth": 1, | ||
"refund": 0, | ||
"opName": "COINBASE" | ||
}, | ||
{ | ||
"pc": 1, | ||
"op": 49, | ||
"gas": "0x2540b91f6", | ||
"gasCost": "0x64", | ||
"memSize": 0, | ||
"stack": [ | ||
"0x4444588443c3a91288c5002483449aba1054192b" | ||
], | ||
"depth": 1, | ||
"refund": 0, | ||
"opName": "BALANCE" | ||
}, | ||
{ | ||
"pc": 2, | ||
"op": 255, | ||
"gas": "0x2540b9192", | ||
"gasCost": "0x1388", | ||
"memSize": 0, | ||
"stack": [ | ||
"0x0" | ||
], | ||
"depth": 1, | ||
"refund": 0, | ||
"opName": "SELFDESTRUCT" | ||
}, | ||
{ | ||
"gasUser": "0x13ee", | ||
"gasTotal": "0x13ee", | ||
"output": "0x" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.