aboutsummaryrefslogtreecommitdiffstats
path: root/rlp/decode_test.go
Commit message (Collapse)AuthorAgeFilesLines
* rlp: allow encoding non-empty interface valuesFelix Lange2015-01-161-0/+5
| | | | | | | | This needs to be supported because []someInterface does occur sometimes. Funny enough, the fix involves changes to the decoder. makeDecoder cannot return an error for non-empty interfaces anymore because the type cache builds both decoder and writer. Do the check at 'runtime' instead.
* rlp: fix Decode benchmarksFelix Lange2015-01-151-8/+10
|
* rlp: add functions for encodingFelix Lange2015-01-151-3/+3
| | | | | | | | I'm reasonably confident that the encoding matches the output of ethutil.Encode for values that it supports. Some of the tests have been adpated from the Ethereum testing repository. There are still TODOs in the code.
* Mergeobscuren2015-01-061-5/+33
|
* rlp: display decoder target type in more error messagesFelix Lange2014-12-101-9/+9
| | | | | Decode error messages now say "expected input list for foo.MyStruct" instead of just "expected List".
* rlp: remove support for signed integer typesFelix Lange2014-12-091-21/+21
| | | | | There is no agreement on how to encode negative integers across implementations. cpp-ethereum doesn't support them either.
* rlp: include target type in decoder error messagesFelix Lange2014-11-251-17/+16
|
* rlp: add NewListStream (for p2p)Felix Lange2014-11-251-0/+18
|
* rlp: add Stream.Reset and accept any reader (for p2p)Felix Lange2014-11-251-2/+36
|
* rlp: fix pointer reuseFelix Lange2014-11-171-2/+9
|
* rlp: new package for streaming RLP decoderFelix Lange2014-11-171-0/+469