diff options
author | Determinant <[email protected]> | 2020-08-19 16:13:57 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2020-08-19 16:13:57 -0400 |
commit | ec103c07738b3db70501dee7a7da113edbb68875 (patch) | |
tree | f35949bc93309350ebc21dc654ee1e20ce60811d /plugin/evm/import_tx.go | |
parent | fbcfc73c7a92d0a2615ef90c4dffa4746161b9c7 (diff) |
...
Diffstat (limited to 'plugin/evm/import_tx.go')
-rw-r--r-- | plugin/evm/import_tx.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugin/evm/import_tx.go b/plugin/evm/import_tx.go index 84f28de..ec2ffa4 100644 --- a/plugin/evm/import_tx.go +++ b/plugin/evm/import_tx.go @@ -17,6 +17,7 @@ import ( //"github.com/ava-labs/gecko/vms/components/verify" "github.com/ava-labs/gecko/vms/secp256k1fx" "github.com/ava-labs/go-ethereum/common" + "github.com/ava-labs/go-ethereum/log" //"github.com/ava-labs/go-ethereum/crypto" ) @@ -191,6 +192,7 @@ func (vm *VM) newImportTx( } tx := &Tx{UnsignedTx: utx} if err := tx.Sign(vm.codec, signers); err != nil { + log.Info("hey here1", "err", err, "utx", utx) return nil, err } return tx, utx.Verify(vm.avm, vm.ctx, vm.txFee, vm.avaxAssetID) |