This repository has been archived by the owner on Apr 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 563
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0c4b322
commit 055870a
Showing
2 changed files
with
65 additions
and
43 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package debug | ||
|
||
// TxTraceTask represents a single transaction trace task when an entire block | ||
// is being traced. | ||
type TxTraceTask struct { | ||
Index int // Transaction offset in the block | ||
} | ||
|
||
// TxTraceResult is the result of a single transaction trace. | ||
type TxTraceResult struct { | ||
Result interface{} `json:"result,omitempty"` // Trace results produced by the tracer | ||
Error string `json:"error,omitempty"` // Trace failure produced by the tracer | ||
} |