diff options
author | obscuren <geffobscura@gmail.com> | 2015-02-14 00:23:48 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-02-14 00:23:48 +0800 |
commit | 7336dfad02833989037440fb22e01566444d0100 (patch) | |
tree | 8f7dc62676e519236b69a977c7af00d81b1e0406 /eth/error.go | |
parent | c9985bf563888d5f346408d2ff174167e8b65880 (diff) | |
parent | 00fca409398172811e71158e0ca9f6229e0f815b (diff) | |
download | dexon-7336dfad02833989037440fb22e01566444d0100.tar dexon-7336dfad02833989037440fb22e01566444d0100.tar.gz dexon-7336dfad02833989037440fb22e01566444d0100.tar.bz2 dexon-7336dfad02833989037440fb22e01566444d0100.tar.lz dexon-7336dfad02833989037440fb22e01566444d0100.tar.xz dexon-7336dfad02833989037440fb22e01566444d0100.tar.zst dexon-7336dfad02833989037440fb22e01566444d0100.zip |
Merge branch 'develop' into poc8
Diffstat (limited to 'eth/error.go')
-rw-r--r-- | eth/error.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/eth/error.go b/eth/error.go index 1d9f80638..9c4a68481 100644 --- a/eth/error.go +++ b/eth/error.go @@ -16,6 +16,7 @@ const ( ErrInvalidBlock ErrInvalidPoW ErrUnrequestedBlock + ErrInsufficientChainInfo ) var errorToString = map[int]string{ @@ -30,6 +31,7 @@ var errorToString = map[int]string{ ErrInvalidBlock: "Invalid block", ErrInvalidPoW: "Invalid PoW", ErrUnrequestedBlock: "Unrequested block", + ErrInsufficientChainInfo: "Insufficient chain info", } type protocolError struct { |