aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-04-09 20:53:20 +0800
committerobscuren <geffobscura@gmail.com>2014-04-09 20:53:20 +0800
commit527a3bbc2aa9cfd26bd8419d33b50adef536067d (patch)
tree94bd4657fb37090dd09be5d6baba3b4ff2c380a9 /ethchain
parent12643c7c5769ee8ed31b9df4556b6ede1cf2db80 (diff)
downloaddexon-527a3bbc2aa9cfd26bd8419d33b50adef536067d.tar
dexon-527a3bbc2aa9cfd26bd8419d33b50adef536067d.tar.gz
dexon-527a3bbc2aa9cfd26bd8419d33b50adef536067d.tar.bz2
dexon-527a3bbc2aa9cfd26bd8419d33b50adef536067d.tar.lz
dexon-527a3bbc2aa9cfd26bd8419d33b50adef536067d.tar.xz
dexon-527a3bbc2aa9cfd26bd8419d33b50adef536067d.tar.zst
dexon-527a3bbc2aa9cfd26bd8419d33b50adef536067d.zip
Typo fix
Diffstat (limited to 'ethchain')
-rw-r--r--ethchain/transaction_pool.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethchain/transaction_pool.go b/ethchain/transaction_pool.go
index a6265afd6..849909677 100644
--- a/ethchain/transaction_pool.go
+++ b/ethchain/transaction_pool.go
@@ -108,7 +108,7 @@ func (pool *TxPool) ProcessTransaction(tx *Transaction, state *State, toContract
}
if sender.Nonce != tx.Nonce {
- return fmt.Errorf("[TXPL] Invalid account nonce, state nonce is %d transactoin nonce is %d instead", sender.Nonce, tx.Nonce)
+ return fmt.Errorf("[TXPL] Invalid account nonce, state nonce is %d transaction nonce is %d instead", sender.Nonce, tx.Nonce)
}
// Get the receiver