Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: bitcoin/bitcoin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: kR105-zz/i0coin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 17 commits
  • 58 files changed
  • 8 contributors

Commits on Apr 20, 2012

  1. Configuration menu
    Copy the full SHA
    2e20546 View commit details
    Browse the repository at this point in the history
  2. * Fixed compilation errors.

    Carlos authored and Carlos committed Apr 20, 2012
    Configuration menu
    Copy the full SHA
    208621b View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2012

  1. * Fixed a bug that crashed the client when launching it with the bloc…

    …kchain already downloaded.
    
    * Added a new seed.
    kr105 committed Apr 21, 2012
    Configuration menu
    Copy the full SHA
    0b62f35 View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2012

  1. * Changed most of Bitcoin strings to I0coin.

    * Changed the Bitcoin logo&icon to I0coin.
    * Fixed some missing libraries in the .pro project file.
    kr105 committed Apr 22, 2012
    Configuration menu
    Copy the full SHA
    c0f0da9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    313ddf4 View commit details
    Browse the repository at this point in the history
  3. Fix bugs on 'unsigned char' platforms.

    In ISO C++, the signedness of 'char' is undefined.  On some platforms (e.g.
    ARM), 'char' is an unsigned type, but some of the code relies on 'char' being
    signed (as it is on x86).  This is indicated by compiler warnings like this:
    
     bignum.h: In constructor 'CBigNum::CBigNum(char)':
     bignum.h:81:59: warning: comparison is always true due to limited range of data type [-Wtype-limits]
    
     util.cpp: In function 'bool IsHex(const string&)':
     util.cpp:427:28: warning: comparison is always false due to limited range of data type [-Wtype-limits]
    
    In particular, IsHex erroneously returned true regardless of the input
    characters, as long as the length of the string was a positive multiple of 2.
    
    Note: For testing, it's possible using GCC to force char to be unsigned by
    adding the -funsigned-char parameter to xCXXFLAGS.
    dlitz authored and kr105 committed Apr 22, 2012
    Configuration menu
    Copy the full SHA
    cb3ca07 View commit details
    Browse the repository at this point in the history
  4. Encapsulate RPC command dispatch in an array of CRPCCommand's

    Conflicts:
    
    	src/bitcoinrpc.cpp
    Jeff Garzik authored and kr105 committed Apr 22, 2012
    Configuration menu
    Copy the full SHA
    9a05c6a View commit details
    Browse the repository at this point in the history
  5. Encapsulate mapCommands in class CRPCTable

    sipa authored and kr105 committed Apr 22, 2012
    Configuration menu
    Copy the full SHA
    0a2c2ee View commit details
    Browse the repository at this point in the history
  6. Expose CRPCTable via bitcoinrpc.h for testing

    sipa authored and kr105 committed Apr 22, 2012
    Configuration menu
    Copy the full SHA
    5ecc7ee View commit details
    Browse the repository at this point in the history
  7. Add explicit numeric constant value for all opcodes

    - Easier for debugging (what opcode was 0x... again?)
    - Clarifies that the opcodes are set in stone in the protocol, and signals that it is impossible to insert opcodes in between.
    laanwj authored and kr105 committed Apr 22, 2012
    Configuration menu
    Copy the full SHA
    31695b3 View commit details
    Browse the repository at this point in the history
  8. change type of various bare chars to bool that are only used as bool …

    …(and never serialized)
    laanwj authored and kr105 committed Apr 22, 2012
    Configuration menu
    Copy the full SHA
    a8c721c View commit details
    Browse the repository at this point in the history
  9. Remove no-longer used UI hints in bitcoin core

    The Qt UI has its own associated structures for temporary transaction state / cache.
    laanwj authored and kr105 committed Apr 22, 2012
    Configuration menu
    Copy the full SHA
    3a84c7c View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    85878a3 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    2c8df44 View commit details
    Browse the repository at this point in the history
  12. * Adress format fix.

    * Added a include header that was removed on a merge by mistake.
    * Replaced all the Bitcoin references by I0coin on the locale files (en & es_CL).
    kr105 committed Apr 22, 2012
    Configuration menu
    Copy the full SHA
    cbf7688 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    0c48afd View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2012

  1. Configuration menu
    Copy the full SHA
    5e24464 View commit details
    Browse the repository at this point in the history
Loading