Skip to content

Commit 41f814c

Browse files
committed
plain trace in OpsTrace.GetResult
1 parent b49d902 commit 41f814c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

eth/tracers/native/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ func (t *OpsTracer) GetResult() (json.RawMessage, error) {
385385
pbTrace := toPbCallTrace(result)
386386
ptxs := make([]types.PlainStackFrame, 0)
387387
dfs(pbTrace, "0", &ptxs)
388-
res, err := json.Marshal(result)
388+
res, err := json.Marshal(ptxs)
389389
if err != nil {
390390
return nil, err
391391
}

params/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const (
2424
VersionMajor = 1 // Major version component of the current release
2525
VersionMinor = 1 // Minor version component of the current release
2626
VersionPatch = 10 // Patch version component of the current release
27-
VersionMeta = "2" // Version metadata to append to the version string
27+
VersionMeta = "3" // Version metadata to append to the version string
2828
)
2929

3030
// Version holds the textual version string.

0 commit comments

Comments
 (0)