diff options
author | Felix Lange <fjl@twurst.com> | 2015-03-19 19:15:43 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-03-19 19:15:43 +0800 |
commit | 965c9babe336cfa8d5c740d5356acbc5f9ba4a72 (patch) | |
tree | 2d72947f28b4fe420b12ff76988e9cf692de126b /rlp/encode_test.go | |
parent | 064279c0ec2f048cbdd965c095ea332bb8666f94 (diff) | |
download | go-tangerine-965c9babe336cfa8d5c740d5356acbc5f9ba4a72.tar.gz go-tangerine-965c9babe336cfa8d5c740d5356acbc5f9ba4a72.tar.zst go-tangerine-965c9babe336cfa8d5c740d5356acbc5f9ba4a72.zip |
rlp: fix encoding of one element strings and byte slices
The encoder was missing a special case for one element strings whose
element is below 0x7f. Such strings must be encoded as a single byte
without a string header.
Diffstat (limited to 'rlp/encode_test.go')
-rw-r--r-- | rlp/encode_test.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/rlp/encode_test.go b/rlp/encode_test.go index 852cb6f59..611514bda 100644 --- a/rlp/encode_test.go +++ b/rlp/encode_test.go @@ -103,12 +103,18 @@ var encTests = []encTest{ // byte slices, strings {val: []byte{}, output: "80"}, + {val: []byte{0x7E}, output: "7E"}, + {val: []byte{0x7F}, output: "7F"}, + {val: []byte{0x80}, output: "8180"}, {val: []byte{1, 2, 3}, output: "83010203"}, {val: []namedByteType{1, 2, 3}, output: "83010203"}, {val: [...]namedByteType{1, 2, 3}, output: "83010203"}, {val: "", output: "80"}, + {val: "\x7E", output: "7E"}, + {val: "\x7F", output: "7F"}, + {val: "\x80", output: "8180"}, {val: "dog", output: "83646F67"}, { val: "Lorem ipsum dolor sit amet, consectetur adipisicing eli", |