mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-22 09:29:38 +00:00
vm: allow emit.Array handle uint256
This commit is contained in:
parent
1d3a297a6b
commit
f7dcb7ae29
1 changed files with 2 additions and 0 deletions
|
@ -88,6 +88,8 @@ func Array(w *io.BinWriter, es ...interface{}) {
|
|||
String(w, e)
|
||||
case util.Uint160:
|
||||
Bytes(w, e.BytesBE())
|
||||
case util.Uint256:
|
||||
Bytes(w, e.BytesBE())
|
||||
case []byte:
|
||||
Bytes(w, e)
|
||||
case bool:
|
||||
|
|
Loading…
Reference in a new issue