forked from TrueCloudLab/neoneo-go
2316e2c4a7
Follow C# implementation: https://docs.neo.org/docs/en-us/reference/rpc/latest-version/api/invokefunction.html
14 lines
457 B
Go
14 lines
457 B
Go
package result
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract"
|
|
)
|
|
|
|
// Invoke represents code invocation result and is used by several RPC calls
|
|
// that invoke functions, scripts and generic bytecode.
|
|
type Invoke struct {
|
|
State string `json:"state"`
|
|
GasConsumed string `json:"gas_consumed"`
|
|
Script string `json:"script"`
|
|
Stack []smartcontract.Parameter `json:"stack"`
|
|
}
|