aboutsummaryrefslogtreecommitdiffstats
path: root/rlp/encode.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2015-08-13 16:12:38 +0800
committerPéter Szilágyi <peterke@gmail.com>2015-08-13 17:05:39 +0800
commit1d2420323ca555f8ac45969bd39415c5e619e4e0 (patch)
tree7ca11784e810dfab9fa9770fa9957bfe452bdb35 /rlp/encode.go
parent0dd6911c6222ce65d6aa0760f7c322246464b2d0 (diff)
downloadgo-tangerine-1d2420323ca555f8ac45969bd39415c5e619e4e0.tar
go-tangerine-1d2420323ca555f8ac45969bd39415c5e619e4e0.tar.gz
go-tangerine-1d2420323ca555f8ac45969bd39415c5e619e4e0.tar.bz2
go-tangerine-1d2420323ca555f8ac45969bd39415c5e619e4e0.tar.lz
go-tangerine-1d2420323ca555f8ac45969bd39415c5e619e4e0.tar.xz
go-tangerine-1d2420323ca555f8ac45969bd39415c5e619e4e0.tar.zst
go-tangerine-1d2420323ca555f8ac45969bd39415c5e619e4e0.zip
rlp: add support for boolean encoding/decoding
Diffstat (limited to 'rlp/encode.go')
-rw-r--r--rlp/encode.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/rlp/encode.go b/rlp/encode.go
index 0ddef7bbb..b525ae4e7 100644
--- a/rlp/encode.go
+++ b/rlp/encode.go
@@ -361,6 +361,8 @@ func makeWriter(typ reflect.Type) (writer, error) {
return writeBigIntNoPtr, nil
case isUint(kind):
return writeUint, nil
+ case kind == reflect.Bool:
+ return writeBool, nil
case kind == reflect.String:
return writeString, nil
case kind == reflect.Slice && isByte(typ.Elem()):
@@ -398,6 +400,15 @@ func writeUint(val reflect.Value, w *encbuf) error {
return nil
}
+func writeBool(val reflect.Value, w *encbuf) error {
+ if val.Bool() {
+ w.str = append(w.str, 0x01)
+ } else {
+ w.str = append(w.str, 0x80)
+ }
+ return nil
+}
+
func writeBigIntPtr(val reflect.Value, w *encbuf) error {
ptr := val.Interface().(*big.Int)
if ptr == nil {