aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-03-27 22:38:55 +0800
committerobscuren <geffobscura@gmail.com>2014-03-27 22:38:55 +0800
commit308c59320c25845f9668e76559b581e2161fec15 (patch)
treeb6dce174dd650f51f854d8b9572590855fe18671 /ethutil
parente0b6091d7ef709902f534c1a4b57151f0171e03c (diff)
downloadgo-tangerine-308c59320c25845f9668e76559b581e2161fec15.tar
go-tangerine-308c59320c25845f9668e76559b581e2161fec15.tar.gz
go-tangerine-308c59320c25845f9668e76559b581e2161fec15.tar.bz2
go-tangerine-308c59320c25845f9668e76559b581e2161fec15.tar.lz
go-tangerine-308c59320c25845f9668e76559b581e2161fec15.tar.xz
go-tangerine-308c59320c25845f9668e76559b581e2161fec15.tar.zst
go-tangerine-308c59320c25845f9668e76559b581e2161fec15.zip
Fixed typo
Diffstat (limited to 'ethutil')
-rw-r--r--ethutil/rlp.go2
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: