mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-26 09:42:22 +00:00
vm: fix stackitem serialisation
We're able to serialise Buffer stackitem, but can not deserealise it which leads to errors. Fixed.
This commit is contained in:
parent
e2c8fd1d5d
commit
29f1e646ed
1 changed files with 3 additions and 2 deletions
|
@ -2,6 +2,7 @@ package stackitem
|
|||
|
||||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"math/big"
|
||||
|
||||
"github.com/nspcc-dev/neo-go/pkg/encoding/bigint"
|
||||
|
@ -96,7 +97,7 @@ func DecodeBinaryStackItem(r *io.BinReader) Item {
|
|||
}
|
||||
|
||||
switch t {
|
||||
case ByteArrayT:
|
||||
case ByteArrayT, BufferT:
|
||||
data := r.ReadVarBytes()
|
||||
return NewByteArray(data)
|
||||
case BooleanT:
|
||||
|
@ -132,7 +133,7 @@ func DecodeBinaryStackItem(r *io.BinReader) Item {
|
|||
case AnyT:
|
||||
return Null{}
|
||||
default:
|
||||
r.Err = errors.New("unknown type")
|
||||
r.Err = fmt.Errorf("unknown type: %v", t)
|
||||
return nil
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue