diff options
author | obscuren <geffobscura@gmail.com> | 2014-03-27 22:38:55 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-03-27 22:38:55 +0800 |
commit | 308c59320c25845f9668e76559b581e2161fec15 (patch) | |
tree | b6dce174dd650f51f854d8b9572590855fe18671 /ethutil/rlp.go | |
parent | e0b6091d7ef709902f534c1a4b57151f0171e03c (diff) | |
download | dexon-308c59320c25845f9668e76559b581e2161fec15.tar.gz dexon-308c59320c25845f9668e76559b581e2161fec15.tar.zst dexon-308c59320c25845f9668e76559b581e2161fec15.zip |
Fixed typo
Diffstat (limited to 'ethutil/rlp.go')
-rw-r--r-- | ethutil/rlp.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethutil/rlp.go b/ethutil/rlp.go index 33ec0d359..e6c75696e 100644 --- a/ethutil/rlp.go +++ b/ethutil/rlp.go @@ -57,7 +57,7 @@ func DecodeWithReader(reader *bytes.Buffer) interface{} { switch { case char == 0: return nil - case char <= 0x7c: + case char <= 0x7f: return char case char <= 0xb7: |