Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-06-01 | move class HelpMessageBox to guiutil.cpp/.h / add button to show Bitcoin ↵ | Philip Kaufmann | |
command-line options (in RPC Console -> Information) / resize Debug window a little to allow for a non-breaking display of the welcome message with non-english translation | |||
2012-05-31 | Use ConvertTo to simplify sendmany/addmultisigaddress argument handling | Gavin Andresen | |
2012-05-31 | Make sendrawtx return txid to be consistent with other send methods. | Gavin Andresen | |
2012-05-31 | Merge pull request #1403 from Diapolo/translation_master_file | Nils Schneider | |
Translation: sync english translation master file with current master branch (2012-05-31) | |||
2012-05-31 | sync english translation master file with current master branch | Philip Kaufmann | |
2012-05-30 | Update bitcoinstrings.cpp | Pieter Wuille | |
2012-05-28 | Merge pull request #1394 from grimd34th/patch-1 | Gregory Maxwell | |
incorrect openssl when compared to makefile | |||
2012-05-28 | incorrect openssl when compared to makefile | grimd34th | |
2012-05-27 | Merge pull request #1392 from gavinandresen/testnet_reset | Gregory Maxwell | |
Testnet reset | |||
2012-05-26 | Merge pull request #1357 from sipa/keyid | Pieter Wuille | |
Refactor: split CKeyID/CScriptID/CTxDestination from CBitcoinAddress | |||
2012-05-26 | Merge pull request #1370 from Diapolo/add_startuptime_to_log | Pieter Wuille | |
add client startup time as an entry to debug.log | |||
2012-05-25 | Add a testnet checkpoint at block 546 | Gavin Andresen | |
2012-05-25 | Fix issue#1082, testnet difficulty unsigned integer underflow | Gavin Andresen | |
2012-05-25 | Testnet, Mark III | Gavin Andresen | |
2012-05-25 | Remove newlines from JSON strings | Gavin Andresen | |
Newlines in JSON strings are against the JSON spec, so remove them from the script*.json unit tests to make python's jsonrpc happy (json::spirit didn't care). | |||
2012-05-25 | Merge pull request #1366 from roques/completion | Gavin Andresen | |
Bash completion for bitcoind(1) | |||
2012-05-25 | Unit tests for transaction size limits | Gavin Andresen | |
2012-05-24 | Lots more Script unit test cases. | Gavin Andresen | |
2012-05-24 | Refactor: split CKeyID/CScriptID/CTxDestination from CBitcoinAddress | Pieter Wuille | |
This introduces internal types: * CKeyID: reference (hash160) of a key * CScriptID: reference (hash160) of a script * CTxDestination: a boost::variant of the former two CBitcoinAddress is retrofitted to be a Base58 encoding of a CTxDestination. This allows all internal code to only use the internal types, and only have RPC and GUI depend on the base58 code. Furthermore, the header dependencies are a lot saner now. base58.h is at the top (right below rpc and gui) instead of at the bottom. For the rest: wallet -> script -> keystore -> key. Only keystore still requires a forward declaration of CScript. Solving that would require splitting script into two layers. | |||
2012-05-24 | Encapsulate public keys in CPubKey | Pieter Wuille | |
2012-05-24 | More CScript unit tests. | Gavin Andresen | |
2012-05-24 | DoS_tests: fix signed/unsigned comparison warnings | Jeff Garzik | |
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] | |||
2012-05-24 | Merge pull request #1387 from Diapolo/rem_unused_rpcdump | Jeff Garzik | |
remove dead "using namespace boost::asio;" from rpcdump.cpp | |||
2012-05-24 | Merge pull request #1383 from jgarzik/rawtx | Jeff Garzik | |
JSON-RPC: Add 'sendrawtx' op, for sending pre-built TX's to network | |||
2012-05-24 | remove dead "using namespace boost::asio;" from rpcdump.cpp | Philip Kaufmann | |
2012-05-24 | Merge branch 'merge2' into merge | Jeff Garzik | |
2012-05-23 | rpcdump: include cleanup. move JSONRPCError def to bitcoinrpc.h. | Jeff Garzik | |
2012-05-23 | Refactor: move runCommand() to util.cpp | Jeff Garzik | |
2012-05-23 | .gitignore: add test_bitcoin | Jeff Garzik | |
2012-05-23 | JSON-RPC: Add 'sendrawtx' op, for sending pre-built TX's to network | Jeff Garzik | |
2012-05-23 | Use debhelper to install bitcoind.bash-completion | Christian von Roques | |
2012-05-23 | Bash programmable completion for bitcoind(1) | Christian von Roques | |
2012-05-23 | add client startup time as an entry to debug.log (note: logged time in ↵ | Philip Kaufmann | |
debug.log differs by a few seconds from the one displayed in the Debug window) / make ClientModel::formatClientStartupTime() return a QString | |||
2012-05-23 | Refactor: add IsChainFile helper. LoadBlockIndex() code movement. | Jeff Garzik | |
2012-05-22 | Merge pull request #1342 from rebroad/LastSeenMinusMinus | Gregory Maxwell | |
Should not be T minus, as this indicate duration to future event. | |||
2012-05-22 | CDBEnv: fix qt build | Luke Dashjr | |
2012-05-22 | Merge pull request #1380 from gavinandresen/optimize2 | Pieter Wuille | |
Move signature cache from CKey::Verify to CheckSig in script.cpp | |||
2012-05-22 | Merge branch 'dbenv' into tmp | Jeff Garzik | |
Conflicts: src/db.cpp | |||
2012-05-22 | Merge pull request #1381 from jgarzik/check-deser | Jeff Garzik | |
Prevent crashes due to missing or corrupted database records | |||
2012-05-22 | Merge pull request #1369 from sipa/bootorder | Pieter Wuille | |
Reorder AppInit2 | |||
2012-05-22 | ProcessMessage(): remove duplicate orphan tx debug message | Jeff Garzik | |
2012-05-22 | Prevent crashes due to missing or corrupted blk????.dat records | Jeff Garzik | |
In LoadExternalBlockFile(), errors are already caught... silently. Add a warning message, even though we do not abort the program due to load error. | |||
2012-05-22 | Prevent crashes due to missing or corrupted database records | Jeff Garzik | |
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. | |||
2012-05-22 | Move signature cache from CKey::Verify to CheckSig in script.cpp | Gavin Andresen | |
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. | |||
2012-05-22 | Merge pull request #1379 from laanwj/2012_05_macoshide | Wladimir J. van der Laan | |
Remove duplicate behavior on MacOSX | |||
2012-05-22 | Remove duplicate behavior on MacOSX | Wladimir J. van der Laan | |
Dock icon on macosx already has show/hide functionality. This results in erratic behavior. | |||
2012-05-22 | Merge branch 'master' of github.com:bitcoin/bitcoin | Gavin Andresen | |
2012-05-22 | Merge branch 'optimize' | Gavin Andresen | |
2012-05-22 | Merge pull request #1378 from rebroad/ProcessMessagesDebugCorrect | Gregory Maxwell | |
Correct debug.log output to show correct function the debug is coming from. | |||
2012-05-22 | Merge pull request #1372 from jgarzik/json-threadsafe | Gavin Andresen | |
Define BOOST_SPIRIT_THREADSAFE at all json_spirit*.h inclusion sites |