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

Sync to btcd commit '5a1e77bd2dd6f5302a82d3d27b4e3a60526918b1' #359

Merged
merged 2 commits into from
Sep 22, 2016

Commits on Apr 14, 2016

  1. blockchain: Remove unneeded unspentness size check. (btcsuite#665)

    The current code is needlessly checking the number of bytes needed to
    serialize the unspentness bitmap in the utxo against a maximum value
    that could never be returned because the function takes a uint32 output
    index which is treated as a bit offset, and converts it bytes, which
    will necessarily be less than a max uint32.
    
    This check also causes a compile error on arm where native integers are
    32 bits.
    
    This simply removes the unneeded check.
    davecgh committed Apr 14, 2016
    Configuration menu
    Copy the full SHA
    5a1e77b View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2016

  1. Sync to btc commit '5a1e77bd2dd6f5302a82d3d27b4e3a60526918b1'

    Merges in 5a1e77b from btcd.
    cjepson committed Sep 22, 2016
    Configuration menu
    Copy the full SHA
    fe4bf14 View commit details
    Browse the repository at this point in the history