aboutsummaryrefslogtreecommitdiff
path: root/plugin/evm/tx.go
diff options
context:
space:
mode:
authorAaron Buchwald <aaron.buchwald56@gmail.com>2020-11-03 20:11:42 -0500
committerAaron Buchwald <aaron.buchwald56@gmail.com>2020-11-04 14:27:31 -0500
commit3a887bbc7b7d88070dbcdb1104119bce282ed249 (patch)
tree1adf2f3f8bdaafd4c3fae12524d5ba94db8440f3 /plugin/evm/tx.go
parentd46b49cc7a0c624cb29eb40016d956d10e100ec9 (diff)
Add getUTXOs and issueTx
Diffstat (limited to 'plugin/evm/tx.go')
-rw-r--r--plugin/evm/tx.go2
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