mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-18 13:59:26 +00:00
Fixed typo
This commit is contained in:
parent
e0b6091d7e
commit
308c59320c
1 changed files with 1 additions and 1 deletions
|
|
@ -57,7 +57,7 @@ func DecodeWithReader(reader *bytes.Buffer) interface{} {
|
||||||
switch {
|
switch {
|
||||||
case char == 0:
|
case char == 0:
|
||||||
return nil
|
return nil
|
||||||
case char <= 0x7c:
|
case char <= 0x7f:
|
||||||
return char
|
return char
|
||||||
|
|
||||||
case char <= 0xb7:
|
case char <= 0xb7:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue