mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2025-01-26 19:17:24 +00:00
Merge pull request #2291 from nspcc-dev/invtree-call-json
vm: put child invocation tree nodes into `call` element
This commit is contained in:
commit
b16497cbc4
1 changed files with 1 additions and 1 deletions
|
@ -8,5 +8,5 @@ import (
|
||||||
// you can see how contracts called each other.
|
// you can see how contracts called each other.
|
||||||
type InvocationTree struct {
|
type InvocationTree struct {
|
||||||
Current util.Uint160 `json:"hash"`
|
Current util.Uint160 `json:"hash"`
|
||||||
Calls []*InvocationTree `json:"calls,omitempty"`
|
Calls []*InvocationTree `json:"call,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue