73b630db9b
Follow C# implementation, we have to marshall JSON Fixed8 fields without taking into account decimals.
59 lines
1.7 KiB
Go
59 lines
1.7 KiB
Go
package state
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neo-go/pkg/io"
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract"
|
|
"github.com/nspcc-dev/neo-go/pkg/smartcontract/trigger"
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
|
"github.com/nspcc-dev/neo-go/pkg/vm/stackitem"
|
|
)
|
|
|
|
// NotificationEvent is a tuple of scripthash that emitted the Item as a
|
|
// notification and that item itself.
|
|
type NotificationEvent struct {
|
|
ScriptHash util.Uint160
|
|
Item stackitem.Item
|
|
}
|
|
|
|
// AppExecResult represent the result of the script execution, gathering together
|
|
// all resulting notifications, state, stack and other metadata.
|
|
type AppExecResult struct {
|
|
TxHash util.Uint256
|
|
Trigger trigger.Type
|
|
VMState string
|
|
GasConsumed int64
|
|
Stack []smartcontract.Parameter
|
|
Events []NotificationEvent
|
|
}
|
|
|
|
// EncodeBinary implements the Serializable interface.
|
|
func (ne *NotificationEvent) EncodeBinary(w *io.BinWriter) {
|
|
ne.ScriptHash.EncodeBinary(w)
|
|
stackitem.EncodeBinaryStackItem(ne.Item, w)
|
|
}
|
|
|
|
// DecodeBinary implements the Serializable interface.
|
|
func (ne *NotificationEvent) DecodeBinary(r *io.BinReader) {
|
|
ne.ScriptHash.DecodeBinary(r)
|
|
ne.Item = stackitem.DecodeBinaryStackItem(r)
|
|
}
|
|
|
|
// EncodeBinary implements the Serializable interface.
|
|
func (aer *AppExecResult) EncodeBinary(w *io.BinWriter) {
|
|
w.WriteBytes(aer.TxHash[:])
|
|
w.WriteB(byte(aer.Trigger))
|
|
w.WriteString(aer.VMState)
|
|
w.WriteU64LE(uint64(aer.GasConsumed))
|
|
w.WriteArray(aer.Stack)
|
|
w.WriteArray(aer.Events)
|
|
}
|
|
|
|
// DecodeBinary implements the Serializable interface.
|
|
func (aer *AppExecResult) DecodeBinary(r *io.BinReader) {
|
|
r.ReadBytes(aer.TxHash[:])
|
|
aer.Trigger = trigger.Type(r.ReadB())
|
|
aer.VMState = r.ReadString()
|
|
aer.GasConsumed = int64(r.ReadU64LE())
|
|
r.ReadArray(&aer.Stack)
|
|
r.ReadArray(&aer.Events)
|
|
}
|