diff options
author | Aaron Buchwald <[email protected]> | 2020-11-03 20:11:42 -0500 |
---|---|---|
committer | Aaron Buchwald <[email protected]> | 2020-11-04 14:27:31 -0500 |
commit | 3a887bbc7b7d88070dbcdb1104119bce282ed249 (patch) | |
tree | 1adf2f3f8bdaafd4c3fae12524d5ba94db8440f3 /plugin/evm/tx.go | |
parent | d46b49cc7a0c624cb29eb40016d956d10e100ec9 (diff) |
Add getUTXOs and issueTx
Diffstat (limited to 'plugin/evm/tx.go')
-rw-r--r-- | plugin/evm/tx.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/evm/tx.go b/plugin/evm/tx.go index 7c2ebf1..2d722a5 100644 --- a/plugin/evm/tx.go +++ b/plugin/evm/tx.go @@ -117,7 +117,7 @@ func (tx *Tx) Sign(c codec.Codec, signers [][]*crypto.PrivateKeySECP256K1R) erro signedBytes, err := c.Marshal(tx) if err != nil { - return fmt.Errorf("couldn't marshal ProposalTx: %w", err) + return fmt.Errorf("couldn't marshal Tx: %w", err) } tx.Initialize(unsignedBytes, signedBytes) return nil |