mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-26 19:42:23 +00:00
core: allow transfer amount to be bytes
VM can produce both big.Int and []byte because they are converted to each other on demand.
This commit is contained in:
parent
d03b2ef4a1
commit
3a510b9dad
1 changed files with 5 additions and 1 deletions
|
@ -708,7 +708,11 @@ func (bc *Blockchain) storeBlock(block *block.Block) error {
|
|||
}
|
||||
amount, ok := arr[3].Value().(*big.Int)
|
||||
if !ok {
|
||||
continue
|
||||
bs, ok := arr[3].Value().([]byte)
|
||||
if !ok {
|
||||
continue
|
||||
}
|
||||
amount = emit.BytesToInt(bs)
|
||||
}
|
||||
// TODO: #498
|
||||
_, _, _, _ = op, from, to, amount
|
||||
|
|
Loading…
Reference in a new issue