- 24 May, 2012 10 commits
-
-
Pieter Wuille authored
-
Gavin Andresen authored
-
Jeff Garzik authored
test/DoS_tests.cpp: In member function ‘void DoS_tests::DoS_mapOrphans::test_method()’: test/DoS_tests.cpp:200:41: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] test/DoS_tests.cpp:208:41: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] test/DoS_tests.cpp: In member function ‘void DoS_tests::DoS_checkSig::test_method()’: test/DoS_tests.cpp:260:37: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] test/DoS_tests.cpp:267:37: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] test/DoS_tests.cpp:280:41: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] test/DoS_tests.cpp:307:37: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
-
Jeff Garzik authored
remove dead "using namespace boost::asio;" from rpcdump.cpp
-
Jeff Garzik authored
JSON-RPC: Add 'sendrawtx' op, for sending pre-built TX's to network
-
Philip Kaufmann authored
-
Jeff Garzik authored
-
Jeff Garzik authored
-
Jeff Garzik authored
-
Jeff Garzik authored
-
- 23 May, 2012 4 commits
-
-
Jeff Garzik authored
-
Jeff Garzik authored
-
Gregory Maxwell authored
Should not be T minus, as this indicate duration to future event.
-
Luke Dashjr authored
-
- 22 May, 2012 16 commits
-
-
Pieter Wuille authored
Move signature cache from CKey::Verify to CheckSig in script.cpp
-
Jeff Garzik authored
Conflicts: src/db.cpp
-
Jeff Garzik authored
Prevent crashes due to missing or corrupted database records
-
Pieter Wuille authored
Reorder AppInit2
-
Jeff Garzik authored
-
Jeff Garzik authored
In LoadExternalBlockFile(), errors are already caught... silently. Add a warning message, even though we do not abort the program due to load error.
-
Jeff Garzik authored
Any problems seen during deserialization will throw an uncaught exception, crashing the entire bitcoin process. Properly return an error instead, so that we may at least log the error and gracefully shutdown other portions of the app.
-
Gavin Andresen authored
More than doubles the speed of verifying already-cached signatures that use compressed pubkeys: Before: ~200 microseconds After: ~80 microseconds (no caching at all: ~3,300 microseconds per signature) Also encapsulates the signature cache code in a class and fixes a signed/unsigned comparison warning.
-
Wladimir J. van der Laan authored
Remove duplicate behavior on MacOSX
-
Wladimir J. van der Laan authored
Dock icon on macosx already has show/hide functionality. This results in erratic behavior.
-
Gavin Andresen authored
-
Gavin Andresen authored
-
Gregory Maxwell authored
Correct debug.log output to show correct function the debug is coming from.
-
Gavin Andresen authored
Define BOOST_SPIRIT_THREADSAFE at all json_spirit*.h inclusion sites
-
R E Broadley authored
-
Jeff Garzik authored
rather than at each include site. Fixes #1371
-
- 21 May, 2012 8 commits
-
-
Pieter Wuille authored
Reopen log file on SIGHUP
-
Wladimir J. van der Laan authored
Filter out whitespace and zero-width non-breaking spaces in address field validator
-
Wladimir J. van der Laan authored
-
Wladimir J. van der Laan authored
- Fixes issues with copy/pasting from web or html emails (#1325)
-
Pieter Wuille authored
This reorders AppInit2 into 10 sections: 1) basic setup (OS stuff, signal handlers) 2) parameter interactions (softset) 3) interpreting options without side effects (just setting internal variables) 4) application initialization (datadir lock, daemonize, pidfile, log file) 5) network initialization (network params, proxy, binding) 6) load blockchain 7) load wallet 8) import blocks (-loadblock=) 9) load peers 10) start node/rpc threads 11) finished This means invalid configurations will be detected as soon as possible (in particular, before loading the block chain).
-
Wladimir J. van der Laan authored
GUI: start rows in askpassphrasedialog.ui at 0 (not 1)
-
Jeff Garzik authored
BDB: restore DB_PRIVATE flag to environment
-
Jeff Garzik authored
Satoshi's commits fdbf76d4 and c8ad9b83 (SVN import) removed the DB_PRIVATE flag from the environment. In part, this enables processes other than bitcoind to examine the active database environment. However, this incurs a slight performance penalty versus working entirely within application memory (DB_PRIVATE). Because bitcointools and other direct-BDB-accessing tools are not used by the vast majority of users, prefer to default with DB_PRIVATE with the option of disabling it if needed via -privdb=0.
-
- 20 May, 2012 2 commits
-
-
Pieter Wuille authored
Update Header Licenses
-
Pieter Wuille authored
remove strncasecmp() + strnicmp() calls use boost::algorithm::istarts_with()
-