Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | common/hexutil: add UnmarshalFixedUnprefixedText | Felix Lange | 2017-03-23 | 1 | -0/+35 |
| | |||||
* | common/hexutil: implement TextMarshaler, TextUnmarshaler | Felix Lange | 2017-03-02 | 1 | -9/+82 |
| | | | | | | | | | | | | | This commit makes the wrapper types more generally applicable. encoding.TextMarshaler is supported by most codec implementations (e.g. for yaml). The tests now ensure that package json actually recognizes the custom marshaler implementation irrespective of how it is implemented. The Uint type has new tests, too. These are tricky because uint size depends on the CPU word size. Turns out that there was one incorrect case where decoding returned ErrUint64Range instead of ErrUintRange. | ||||
* | common/hexutil: reject big integer inputs > 256 bits | Felix Lange | 2017-03-02 | 1 | -0/+8 |
| | | | | This follows the change to common/math big integer parsing in PR #3699. | ||||
* | common/hexutil: allow empty strings when decoding JSON (#3559) | Felix Lange | 2017-01-13 | 1 | -3/+3 |
| | |||||
* | common/hexutil: fix Test{Decode,Unmarshal}Uint64 on 32bit arch (#3363) | Felix Lange | 2016-11-28 | 1 | -1/+1 |
| | |||||
* | common/hexutil: new package for 0x hex encoding | Felix Lange | 2016-11-28 | 1 | -0/+258 |
The new package is purpose-built to handle the encoding consumed and produced by the RPC API. |