diff options
author | Aaron Buchwald <[email protected]> | 2020-09-23 15:43:35 -0400 |
---|---|---|
committer | Aaron Buchwald <[email protected]> | 2020-09-23 15:43:35 -0400 |
commit | 100f358d61d60d1196e3a68517c25147b45d965b (patch) | |
tree | fa77d6fbc0d65d87e8a520da95af95ede4ace129 /plugin/evm/import_tx.go | |
parent | affb9c79b05ce6610c4b397fc6998df23cf599bd (diff) |
remove requirement that evm inputs/outputs are non-empty list
Diffstat (limited to 'plugin/evm/import_tx.go')
-rw-r--r-- | plugin/evm/import_tx.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/plugin/evm/import_tx.go b/plugin/evm/import_tx.go index 00e133b..b848e61 100644 --- a/plugin/evm/import_tx.go +++ b/plugin/evm/import_tx.go @@ -64,8 +64,6 @@ func (tx *UnsignedImportTx) Verify( return errWrongChainID case len(tx.ImportedInputs) == 0: return errNoImportInputs - case len(tx.Outs) == 0: - return errNoImportOutputs case tx.NetworkID != ctx.NetworkID: return errWrongNetworkID case !ctx.ChainID.Equals(tx.BlockchainID): |