forked from TrueCloudLab/neoneo-go
28908aa3cf
Signed-off-by: Elizaveta Chichindaeva <elizaveta@nspcc.ru>
12 lines
311 B
Go
12 lines
311 B
Go
package vm
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
|
)
|
|
|
|
// InvocationTree represents a tree with script hashes; when traversing it,
|
|
// you can see how contracts called each other.
|
|
type InvocationTree struct {
|
|
Current util.Uint160 `json:"hash"`
|
|
Calls []*InvocationTree `json:"call,omitempty"`
|
|
}
|