2020-01-13 12:27:34 +03:00
|
|
|
package result
|
2019-10-29 18:31:39 +03:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/CityOfZion/neo-go/pkg/vm"
|
|
|
|
)
|
|
|
|
|
2020-01-13 12:27:34 +03:00
|
|
|
// Invoke represents code invocation result and is used by several RPC calls
|
|
|
|
// that invoke functions, scripts and generic bytecode.
|
|
|
|
type Invoke struct {
|
2019-10-29 18:31:39 +03:00
|
|
|
State string `json:"state"`
|
|
|
|
GasConsumed string `json:"gas_consumed"`
|
|
|
|
Script string `json:"script"`
|
|
|
|
Stack *vm.Stack
|
|
|
|
}
|