Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | common/hexutil: ensure negative big.Int is encoded sensibly | Felix Lange | 2017-03-02 | 1 | -1/+1 |
| | | | | Restricting encoding is silly. | ||||
* | common/hexutil: don't leak encoding/hex errors in Decode | Felix Lange | 2017-03-02 | 1 | -1/+5 |
| | | | | | All other functions return errors from package hexutil, ensure that Decode does too. | ||||
* | common/hexutil: reject big integer inputs > 256 bits | Felix Lange | 2017-03-02 | 1 | -0/+5 |
| | | | | This follows the change to common/math big integer parsing in PR #3699. | ||||
* | common/hexutil: fix EncodeBig, Big.MarshalJSON | Felix Lange | 2017-01-16 | 1 | -6/+1 |
| | | | | | The code was too clever and failed to include zeros on a big.Word boundary. | ||||
* | common/hexutil: new package for 0x hex encoding | Felix Lange | 2016-11-28 | 1 | -0/+232 |
The new package is purpose-built to handle the encoding consumed and produced by the RPC API. |