diff options
author | Felix Lange <fjl@users.noreply.github.com> | 2017-03-22 08:36:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-22 08:36:22 +0800 |
commit | 06d6685eb58f6cb0eda4d7adc8ae91e5cdb88462 (patch) | |
tree | d764690055f2ee7d880bcce2e413a3665fc1e7e9 /rlp/encode_test.go | |
parent | 1dfd65f6d047407585845dfe9be2ff52a8b9f3ab (diff) | |
parent | 8cf08e4b25c4cd0e0955598342394f34feecca0c (diff) | |
download | dexon-06d6685eb58f6cb0eda4d7adc8ae91e5cdb88462.tar dexon-06d6685eb58f6cb0eda4d7adc8ae91e5cdb88462.tar.gz dexon-06d6685eb58f6cb0eda4d7adc8ae91e5cdb88462.tar.bz2 dexon-06d6685eb58f6cb0eda4d7adc8ae91e5cdb88462.tar.lz dexon-06d6685eb58f6cb0eda4d7adc8ae91e5cdb88462.tar.xz dexon-06d6685eb58f6cb0eda4d7adc8ae91e5cdb88462.tar.zst dexon-06d6685eb58f6cb0eda4d7adc8ae91e5cdb88462.zip |
Merge pull request #3756 from fjl/core-types-gencodec
core/types: use gencodec for JSON marshaling code
Diffstat (limited to 'rlp/encode_test.go')
-rw-r--r-- | rlp/encode_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rlp/encode_test.go b/rlp/encode_test.go index 6f38294e4..827960f7c 100644 --- a/rlp/encode_test.go +++ b/rlp/encode_test.go @@ -218,6 +218,7 @@ var encTests = []encTest{ {val: &tailRaw{A: 1, Tail: []RawValue{unhex("02")}}, output: "C20102"}, {val: &tailRaw{A: 1, Tail: []RawValue{}}, output: "C101"}, {val: &tailRaw{A: 1, Tail: nil}, output: "C101"}, + {val: &hasIgnoredField{A: 1, B: 2, C: 3}, output: "C20103"}, // nil {val: (*uint)(nil), output: "80"}, |