Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RLP: remove signed integer support and other fixes #203

Merged
merged 5 commits into from
Dec 9, 2014

Commits on Dec 9, 2014

  1. Configuration menu
    Copy the full SHA
    4f12f06 View commit details
    Browse the repository at this point in the history
  2. rlp: remove support for signed integer types

    There is no agreement on how to encode negative integers
    across implementations. cpp-ethereum doesn't support them either.
    fjl committed Dec 9, 2014
    Configuration menu
    Copy the full SHA
    93e858f View commit details
    Browse the repository at this point in the history
  3. rlp: fix panic in decodeList on go 1.4+

    The documentation for reflect.Value.Index states that it will
    panic for out-of-bounds indices. Since go 1.4, it actually panics.
    fjl committed Dec 9, 2014
    Configuration menu
    Copy the full SHA
    c084a7d View commit details
    Browse the repository at this point in the history
  4. rlp: remove dead code

    fjl committed Dec 9, 2014
    Configuration menu
    Copy the full SHA
    829730d View commit details
    Browse the repository at this point in the history
  5. rlp: display decoder target type in more error messages

    Decode error messages now say "expected input list for foo.MyStruct"
    instead of just "expected List".
    fjl committed Dec 9, 2014
    Configuration menu
    Copy the full SHA
    6cf4e03 View commit details
    Browse the repository at this point in the history