diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-04-23 17:59:56 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-04-23 17:59:56 +0800 |
commit | 2f8809df404b83824ffadd61ff766cbf9e4c5419 (patch) | |
tree | d3c168060e3efffb945079be1d221d14b4ec79d1 /core/error.go | |
parent | 2fe54ab233c0cd1bf09b49085477c961dcc1980f (diff) | |
parent | 7f14fbd57936cf74627572da4a06585d35161ea9 (diff) | |
download | dexon-2f8809df404b83824ffadd61ff766cbf9e4c5419.tar dexon-2f8809df404b83824ffadd61ff766cbf9e4c5419.tar.gz dexon-2f8809df404b83824ffadd61ff766cbf9e4c5419.tar.bz2 dexon-2f8809df404b83824ffadd61ff766cbf9e4c5419.tar.lz dexon-2f8809df404b83824ffadd61ff766cbf9e4c5419.tar.xz dexon-2f8809df404b83824ffadd61ff766cbf9e4c5419.tar.zst dexon-2f8809df404b83824ffadd61ff766cbf9e4c5419.zip |
Merge pull request #769 from obscuren/develop
core: transaction queue
Diffstat (limited to 'core/error.go')
-rw-r--r-- | core/error.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/error.go b/core/error.go index 0642948cd..40db99ecd 100644 --- a/core/error.go +++ b/core/error.go @@ -81,7 +81,7 @@ func (err *NonceErr) Error() string { } func NonceError(is, exp uint64) *NonceErr { - return &NonceErr{Message: fmt.Sprintf("Transaction w/ invalid nonce (%d / %d)", is, exp), Is: is, Exp: exp} + return &NonceErr{Message: fmt.Sprintf("Transaction w/ invalid nonce. tx=%d state=%d)", is, exp), Is: is, Exp: exp} } func IsNonceErr(err error) bool { |