mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-25 03:47:18 +00:00
4c8d327353
And use smartcontract.Parameter instead of vm.StackItem where appropriate. Closes #689.
14 lines
386 B
Go
14 lines
386 B
Go
package result
|
|
|
|
import (
|
|
"github.com/CityOfZion/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
|
|
}
|