aboutsummaryrefslogtreecommitdiff
path: root/plugin/evm/tx.go
diff options
context:
space:
mode:
authoraaronbuchwald <aaron.buchwald56@gmail.com>2020-11-09 11:43:04 -0500
committerGitHub <noreply@github.com>2020-11-09 11:43:04 -0500
commitff462c343e87ba3ab38d7aad95e3a85408f38bb0 (patch)
tree1adf2f3f8bdaafd4c3fae12524d5ba94db8440f3 /plugin/evm/tx.go
parent24cf772145b7d976fff613a51b7d22f70fc1ac34 (diff)
parent3a887bbc7b7d88070dbcdb1104119bce282ed249 (diff)
Merge pull request #48 from ava-labs/atomic-api
Atomic api
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