-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
integration: debug_traceBlockByNumber with tags (#315)
- Loading branch information
1 parent
fd96753
commit 2343604
Showing
9 changed files
with
165 additions
and
1 deletion.
There are no files selected for viewing
Binary file not shown.
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,26 @@ | ||
[ | ||
{ | ||
"request": { | ||
"id": 1, | ||
"jsonrpc": "2.0", | ||
"method": "debug_traceBlockByNumber", | ||
"params": [ | ||
"earliest", | ||
{ | ||
"disableMemory": false, | ||
"disableStack": false, | ||
"disableStorage": false | ||
} | ||
] | ||
}, | ||
"response": { | ||
"id": 1, | ||
"jsonrpc": "2.0", | ||
"result": [] | ||
}, | ||
"test": { | ||
"description": "trace the earliest block", | ||
"reference": "" | ||
} | ||
} | ||
] |
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,26 @@ | ||
[ | ||
{ | ||
"request": { | ||
"id": 1, | ||
"jsonrpc": "2.0", | ||
"method": "debug_traceBlockByNumber", | ||
"params": [ | ||
"latest", | ||
{ | ||
"disableMemory": true, | ||
"disableStack": true, | ||
"disableStorage": true | ||
} | ||
] | ||
}, | ||
"response": { | ||
"id": 1, | ||
"jsonrpc": "2.0", | ||
"result": null | ||
}, | ||
"test": { | ||
"description": "trace the latest block", | ||
"reference": "" | ||
} | ||
} | ||
] |
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,26 @@ | ||
[ | ||
{ | ||
"request": { | ||
"id": 1, | ||
"jsonrpc": "2.0", | ||
"method": "debug_traceBlockByNumber", | ||
"params": [ | ||
"pending", | ||
{ | ||
"disableMemory": true, | ||
"disableStack": true, | ||
"disableStorage": true | ||
} | ||
] | ||
}, | ||
"response": { | ||
"id": 1, | ||
"jsonrpc": "2.0", | ||
"result": null | ||
}, | ||
"test": { | ||
"description": "trace the pending block", | ||
"reference": "" | ||
} | ||
} | ||
] |
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,26 @@ | ||
[ | ||
{ | ||
"request": { | ||
"id": 1, | ||
"jsonrpc": "2.0", | ||
"method": "debug_traceBlockByNumber", | ||
"params": [ | ||
"finalized", | ||
{ | ||
"disableMemory": true, | ||
"disableStack": true, | ||
"disableStorage": true | ||
} | ||
] | ||
}, | ||
"response": { | ||
"id": 1, | ||
"jsonrpc": "2.0", | ||
"result": null | ||
}, | ||
"test": { | ||
"description": "trace the finalized block", | ||
"reference": "" | ||
} | ||
} | ||
] |
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,26 @@ | ||
[ | ||
{ | ||
"request": { | ||
"id": 1, | ||
"jsonrpc": "2.0", | ||
"method": "debug_traceBlockByNumber", | ||
"params": [ | ||
"safe", | ||
{ | ||
"disableMemory": true, | ||
"disableStack": true, | ||
"disableStorage": true | ||
} | ||
] | ||
}, | ||
"response": { | ||
"id": 1, | ||
"jsonrpc": "2.0", | ||
"result": null | ||
}, | ||
"test": { | ||
"description": "trace the safe block", | ||
"reference": "" | ||
} | ||
} | ||
] |
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,26 @@ | ||
[ | ||
{ | ||
"request": { | ||
"id": 1, | ||
"jsonrpc": "2.0", | ||
"method": "debug_traceBlockByNumber", | ||
"params": [ | ||
"latestExecuted", | ||
{ | ||
"disableMemory": true, | ||
"disableStack": true, | ||
"disableStorage": true | ||
} | ||
] | ||
}, | ||
"response": { | ||
"id": 1, | ||
"jsonrpc": "2.0", | ||
"result": null | ||
}, | ||
"test": { | ||
"description": "trace the latestExecuted block", | ||
"reference": "" | ||
} | ||
} | ||
] |
Binary file not shown.
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