diff options
author | Gav Wood <i@gavwood.com> | 2014-02-22 02:49:24 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2014-02-22 02:49:24 +0800 |
commit | a0ec84383218ea80b4c0b99e09710fae182a2379 (patch) | |
tree | bc2b474781d0b0621ad1d854271d0f512f26341f /hexencodetest.json | |
parent | 660cd26f31b3979149950c1fdea995b85a774c1c (diff) | |
download | go-tangerine-a0ec84383218ea80b4c0b99e09710fae182a2379.tar go-tangerine-a0ec84383218ea80b4c0b99e09710fae182a2379.tar.gz go-tangerine-a0ec84383218ea80b4c0b99e09710fae182a2379.tar.bz2 go-tangerine-a0ec84383218ea80b4c0b99e09710fae182a2379.tar.lz go-tangerine-a0ec84383218ea80b4c0b99e09710fae182a2379.tar.xz go-tangerine-a0ec84383218ea80b4c0b99e09710fae182a2379.tar.zst go-tangerine-a0ec84383218ea80b4c0b99e09710fae182a2379.zip |
Moved over to new format, but RLP tests still need updating.
Diffstat (limited to 'hexencodetest.json')
-rw-r--r-- | hexencodetest.json | 68 |
1 files changed, 34 insertions, 34 deletions
diff --git a/hexencodetest.json b/hexencodetest.json index a6d18834c..6fe7891c3 100644 --- a/hexencodetest.json +++ b/hexencodetest.json @@ -1,34 +1,34 @@ -[ - [ - [ 1, 2, 3, 4, 5 ], - "112345" - ], - [ - [ 0, 1, 2, 3, 4, 5 ], - "00012345" - ], - [ - [ 6, 4, 6, 15, 6, 7, 6, 5, 16 ], - "20646f6765" - ], - [ - [ 7, 6, 5, 16 ], - "3765" - ], - [ - [ 16 ], - "20" - ], - [ - [ 0, 16 ], - "30" - ], - [ - [ 15, 1, 12, 11, 8, 16 ], - "3f1cb8" - ], - [ - [ 0, 15, 1, 12, 11, 8, 16 ], - "200f1cb8" - ] -] +{ + "nz,odd": { + "seq": [ 1, 2, 3, 4, 5 ], + "return": "112345" + }, + "z,even": { + "seq": [ 0, 1, 2, 3, 4, 5 ], + "return": "00012345" + }, + "long": { + "seq": [ 6, 4, 6, 15, 6, 7, 6, 5, 16 ], + "return": "20646f6765" + }, + "short": { + "seq": [ 7, 6, 5, 16 ], + "return": "3765" + }, + "nz,one": { + "seq": [ 16 ], + "return": "20" + }, + "z,two": { + "seq": [ 0, 16 ], + "return": "30" + }, + "nz,even": { + "seq": [ 15, 1, 12, 11, 8, 16 ], + "return": "3f1cb8" + }, + "z,odd": { + "seq": [ 0, 15, 1, 12, 11, 8, 16 ], + "return": "200f1cb8" + } +} |