diff options
author | obscuren <geffobscura@gmail.com> | 2014-04-09 20:53:20 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-04-09 20:53:20 +0800 |
commit | 527a3bbc2aa9cfd26bd8419d33b50adef536067d (patch) | |
tree | 94bd4657fb37090dd09be5d6baba3b4ff2c380a9 /ethchain | |
parent | 12643c7c5769ee8ed31b9df4556b6ede1cf2db80 (diff) | |
download | go-tangerine-527a3bbc2aa9cfd26bd8419d33b50adef536067d.tar go-tangerine-527a3bbc2aa9cfd26bd8419d33b50adef536067d.tar.gz go-tangerine-527a3bbc2aa9cfd26bd8419d33b50adef536067d.tar.bz2 go-tangerine-527a3bbc2aa9cfd26bd8419d33b50adef536067d.tar.lz go-tangerine-527a3bbc2aa9cfd26bd8419d33b50adef536067d.tar.xz go-tangerine-527a3bbc2aa9cfd26bd8419d33b50adef536067d.tar.zst go-tangerine-527a3bbc2aa9cfd26bd8419d33b50adef536067d.zip |
Typo fix
Diffstat (limited to 'ethchain')
-rw-r--r-- | ethchain/transaction_pool.go | 2 |
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 |