aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | | change button tooltip on sign message page for copy to clipboard as it was ↵Philip Kaufmann2012-04-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | missleading
* | | | | | | | | Merge pull request #1163 from laanwj/2012_04_uiperformanceissueWladimir J. van der Laan2012-04-291-2/+0
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Fix critical UI performance issue (#1154)
| * | | | | | | | | Fix critical UI performance issue (#1154)Wladimir J. van der Laan2012-04-291-2/+0
|/ / / / / / / / /
* | | | | | | | | Update openssl versionv0.6.1rc1Gavin Andresen2012-04-271-2/+2
| | | | | | | | |
* | | | | | | | | Bump win32.deps version number for new opensslGavin Andresen2012-04-272-3/+3
| | | | | | | | |
* | | | | | | | | Windows build: compile against openssl 1.0.1bGavin Andresen2012-04-274-8/+8
| | | | | | | | |
* | | | | | | | | Bump version numbers for 0.6.1rc1Gavin Andresen2012-04-278-13/+9
| | | | | | | | |
* | | | | | | | | Merge pull request #1151 from freewil/listsinceblock-blockhashGavin Andresen2012-04-261-2/+2
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | listsinceblock: rpc param blockid -> blockhash
| * | | | | | | | | listsinceblock: rpc param blockid -> blockhashfreewil2012-04-261-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is more consistent with the rest of the labeling seen by the user when accessing the rpc commands.
* | | | | | | | | | Merge pull request #1150 from gavinandresen/NOPCHGavin Andresen2012-04-263-3/+3
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Remove unused -DNOPCH
| * | | | | | | | | | Remove unused -DNOPCHGavin Andresen2012-04-253-3/+3
| |/ / / / / / / / /
* | | | | | | | | | Merge pull request #1152 from freewil/remove-strange-debugGavin Andresen2012-04-261-1/+0
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | remove strange debug message from listsinceblock
| * | | | | | | | | | remove strange debug message from listsinceblockfreewil2012-04-261-1/+0
| |/ / / / / / / / /
* | | | | | | | | | Merge pull request #1146 from drizztbsd/posix-includePieter Wuille2012-04-261-3/+1
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | We should include netinet/in.h to use sockaddr_in (POSIX.1-2001)
| * | | | | | | | | | We should include netinet/in.h to use sockaddr_in (POSIX.1-2001)Timothy Redaelli2012-04-251-3/+1
| |/ / / / / / / / /
* | | | | | | | | | Define TEST_DATA_DIR so unit tests can be run from any current working directoryGavin Andresen2012-04-265-17/+26
| | | | | | | | | |
* | | | | | | | | | Undo part of c2e8c8ac to fix issue#1148Gavin Andresen2012-04-261-1/+1
| | | | | | | | | |
* | | | | | | | | | Merge pull request #1119 from sipa/fastshutdownPieter Wuille2012-04-266-3/+27
|\ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / |/| | | | | | | | | Make lsn_reset ("detach databases") optional and off by default.
| * | | | | | | | | Make lsn_reset ("detach databases") optional and off by default.Pieter Wuille2012-04-266-3/+27
|/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add an option -detachdb (and entry in OptionDialog), without which no lsn_reset is called on addr.dat and blkindex.dat. That means these files cannot be moved to a new environment, but shutdown can be significantly faster. The wallet file is always lsn_reset'ed. -detachdb corresponds to the old behaviour, though it is off by default now to speed up shutdowns.
* | | | | | | | | Merge pull request #1140 from jgarzik/sign-compareJeff Garzik2012-04-2313-64/+74
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Address many more sign comparison warnings
| * | | | | | | | | Change signed->unsigned at 3 code sitesJeff Garzik2012-04-233-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This resolves signed/unsigned comparison warnings.
| * | | | | | | | | CBlock::WriteToDisk() properly checks ftell(3) for error returnJeff Garzik2012-04-231-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rather than storing ftell(3)'s return value -- a long -- in an unsigned int, we store and check a properly typed temp. Then, assured a non-negative value, we store in nBlockPosRet.
| * | | | | | | | | Add casts for unavoidable signed/unsigned comparisonsJeff Garzik2012-04-238-19/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | At these code sites, it is preferable to cast rather than change a variable's type.
| * | | | | | | | | Test ScriptSigArgsExpected() for error, before accumulating return valueJeff Garzik2012-04-231-2/+9
| | | | | | | | | |
| * | | | | | | | | SigOp and orphan-tx constants and counts are always unsigned.Jeff Garzik2012-04-235-23/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes several sign-comparison warnings.
| * | | | | | | | | Prefer 'unsigned int' for loop index variables tested against ::size()Jeff Garzik2012-04-223-14/+14
| |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | C++ STL ::size() generally returns unsigned, which implies that "int idx" style of loop variable will generate a signed-vs-unsigned comparison warning when testing the loop exit condition "idx < blah.size()" Update areas of the bitcoin code where loop variables may be more properly and correctly defined as unsigned.
* | | | | | | | | Merge pull request #1133 from sipa/abspathPieter Wuille2012-04-224-7/+12
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | Make GetDataDir return absolute paths
| * | | | | | | | Make GetDataDir return absolute pathsPieter Wuille2012-04-224-7/+12
|/ / / / / / / /
* | | | | | | | Merge pull request #1124 from sipa/rpcobj3Pieter Wuille2012-04-213-106/+130
|\ \ \ \ \ \ \ \ | |_|_|/ / / / / |/| | | | | | | extension of #1103: encapsulate mapCommands in CRPCTable
| * | | | | | | Expose CRPCTable via bitcoinrpc.h for testingPieter Wuille2012-04-213-33/+41
| | | | | | | |
| * | | | | | | Encapsulate mapCommands in class CRPCTablePieter Wuille2012-04-211-27/+38
| | | | | | | |
| * | | | | | | Encapsulate RPC command dispatch in an array of CRPCCommand'sJeff Garzik2012-04-211-84/+89
| | | | | | | |
* | | | | | | | Merge pull request #1131 from laanwj/2012_04_hexstrPieter Wuille2012-04-212-9/+25
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Integrate @JoelKatz's optimized ToHex (#562) into current HexStr function
| * | | | | | | | Integrate @JoelKatz's optimized ToHex (#562) into current HexStr functionWladimir J. van der Laan2012-04-212-9/+25
| |/ / / / / / /
* | | | | | | | Merge pull request #1129 from laanwj/2012_04_opcodesPieter Wuille2012-04-214-129/+121
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Add explicit numeric constant value for all opcodes
| * | | | | | | | Remove no-longer used UI hints in bitcoin coreWladimir J. van der Laan2012-04-212-9/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The Qt UI has its own associated structures for temporary transaction state / cache.
| * | | | | | | | change type of various bare chars to bool that are only used as bool (and ↵Wladimir J. van der Laan2012-04-212-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | never serialized)
| * | | | | | | | Add explicit numeric constant value for all opcodesWladimir J. van der Laan2012-04-211-115/+115
| |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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.
* | | | | | | | Merge pull request #1121 from gavinandresen/scripttestGavin Andresen2012-04-213-0/+253
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Data-driven script evaluation unit tests (rebased to fix compiler warning).
| * | | | | | | | Data-drive script evaluation unit tests.Gavin Andresen2012-04-213-0/+253
|/ / / / / / / /
* | | | | | | | Merge pull request #1126 from drizztbsd/masterPieter Wuille2012-04-212-0/+2
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | Fix build with gcc 4.7
| * | | | | | | Add missing includes. (Fix bulding under GCC 4.7)Timothy Redaelli2012-04-202-0/+2
| | | | | | | |
* | | | | | | | Merge pull request #1122 from dlitz/unsigned-char-fixWladimir J. van der Laan2012-04-204-10/+13
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | Unsigned char fix & fix undefined phexdigits[255]
| * | | | | | | Fix bugs on 'unsigned char' platforms.Dwayne C. Litzenberger2012-04-184-9/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| * | | | | | | Fix phexdigits[255] is undefined.Dwayne C. Litzenberger2012-04-181-1/+1
| | |_|/ / / / | |/| | | | |
* | | | | | | Merge pull request #959 from rebroad/LoadBlockIndexKillablePieter Wuille2012-04-192-2/+14
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | Added ability to respond to signals during Block Loading stage.
| * | | | | | Added ability to respond to signals during Block Loading stage.R E Broadley2012-04-182-2/+14
|/ / / / / /
* | | | | | Merge pull request #1118 from sipa/addbreaksWladimir J. van der Laan2012-04-171-0/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | Add missing breaks in optionmodel's switch case
| * | | | | | Add missing breaks in optionmodel's switch casePieter Wuille2012-04-171-0/+2
|/ / / / / /
* | | | | | Merge pull request #1114 from sipa/lesssyncPieter Wuille2012-04-171-0/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | Reduce sync frequency for blkindex.dat