vm: put child invocation tree nodes into call element

As neo-project/neo-modules#657 currently does.
This commit is contained in:
Roman Khimov 2021-12-02 17:46:48 +03:00
parent e3d8e7b613
commit eb27699dad

View file

@ -8,5 +8,5 @@ import (
// you can see how contracts called each other.
type InvocationTree struct {
Current util.Uint160 `json:"hash"`
Calls []*InvocationTree `json:"calls,omitempty"`
Calls []*InvocationTree `json:"call,omitempty"`
}