rpc: add verbose parameter to invokefunction and invokescript

This commit is contained in:
Roman Khimov 2021-11-20 21:55:55 +03:00
parent 5b470f14cc
commit c01427ca65
4 changed files with 102 additions and 6 deletions

View file

@ -7,6 +7,6 @@ import (
// InvocationTree represents a tree with script hashes, traversing it
// you can see how contracts called each other.
type InvocationTree struct {
Current util.Uint160
Calls []*InvocationTree
Current util.Uint160 `json:"hash"`
Calls []*InvocationTree `json:"calls,omitempty"`
}