diff options
author | StephenButtolph <[email protected]> | 2020-08-20 11:31:24 -0400 |
---|---|---|
committer | StephenButtolph <[email protected]> | 2020-08-20 11:31:24 -0400 |
commit | 6aa9e31ed3082df34373679f98ad2b004bef2ffa (patch) | |
tree | 539944015c77adc26b43c497443f55fbd74d73f7 /plugin/evm/vm.go | |
parent | 52c6ccd2f063a6cccc35f5b4380b22fb9dd0f102 (diff) |
fixed copy paste bug
Diffstat (limited to 'plugin/evm/vm.go')
-rw-r--r-- | plugin/evm/vm.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/evm/vm.go b/plugin/evm/vm.go index 4ea3793..cc58e8b 100644 --- a/plugin/evm/vm.go +++ b/plugin/evm/vm.go @@ -754,7 +754,7 @@ func (vm *VM) GetAtomicUTXOs( } lastUTXOID, err := ids.ToID(lastUTXO) if err != nil { - lastAddrID = ids.ShortEmpty + lastUTXOID = ids.Empty } utxos := make([]*avax.UTXO, len(allUTXOBytes)) |