diff options
author | Aaron Buchwald <[email protected]> | 2020-09-23 15:41:05 -0400 |
---|---|---|
committer | Aaron Buchwald <[email protected]> | 2020-09-23 15:41:05 -0400 |
commit | affb9c79b05ce6610c4b397fc6998df23cf599bd (patch) | |
tree | e771dbf593208d573d7d6c4516d3c29000369f7c /plugin/evm/import_tx.go | |
parent | febbf65d34101980d159a1f47b65848183082db8 (diff) |
remove requirement for evm inputs and outputs to be sorted and unique
Diffstat (limited to 'plugin/evm/import_tx.go')
-rw-r--r-- | plugin/evm/import_tx.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/plugin/evm/import_tx.go b/plugin/evm/import_tx.go index 2b8882f..00e133b 100644 --- a/plugin/evm/import_tx.go +++ b/plugin/evm/import_tx.go @@ -77,9 +77,6 @@ func (tx *UnsignedImportTx) Verify( return err } } - if !IsSortedAndUniqueEVMOutputs(tx.Outs) { - return errExportOutputsNotSortedAndUnique - } for _, in := range tx.ImportedInputs { if err := in.Verify(); err != nil { |