- 11 Jun, 2012 1 commit
-
-
Matt Corallo authored
-
- 04 Jun, 2012 3 commits
-
-
-
Gavin Andresen authored
Update contrib/debian.
-
Gavin Andresen authored
"USE_UPNP=-" is needed to remove UPnP support.
-
- 03 Jun, 2012 1 commit
-
-
Chris Moore authored
-
- 02 Jun, 2012 4 commits
-
-
Matt Corallo authored
* Updates package description to note that blockchain now takes 2+ GB instead of 150+ MB. * Stop creating DB_CONFIG with DB_LOG_AUTO_REMOVE as that is set in Bitcoin itself now. * Update changelog with 0.6.2 and the current updates.
-
Wladimir J. van der Laan authored
Added 'immature balance' for miners. Only displayed if the balance is > 0
-
Wladimir J. van der Laan authored
GUI: change verifymessagepage behaviour to match RPC-call "verifymessage"
-
Wladimir J. van der Laan authored
GUI: move class HelpMessageBox to guiutil.cpp/.h
-
- 01 Jun, 2012 2 commits
-
-
Philip Kaufmann authored
move class HelpMessageBox to guiutil.cpp/.h / add button to show Bitcoin 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
-
Philip Kaufmann authored
change verifymessagepage behaviour to match RPC-call "verifymessage" (input address, signature and message) / display messages in status label (remove message boxes) / resize window to make signature fully readable / change signature font to BC-address font (like in messagepage) / remove checkAddress() and place code directly in on_verifyMessage_clicked() / add visual feedback to LineEdits / remove AddressTableModel references, as they are now unused / add addr.GetKeyID(keyID) check
-
- 31 May, 2012 5 commits
-
-
Gavin Andresen authored
-
Gavin Andresen authored
-
Pieter Wuille authored
-
Nils Schneider authored
Translation: sync english translation master file with current master branch (2012-05-31)
-
Philip Kaufmann authored
-
- 30 May, 2012 1 commit
-
-
Pieter Wuille authored
-
- 28 May, 2012 3 commits
-
-
Gregory Maxwell authored
incorrect openssl when compared to makefile
-
grimd34th authored
-
Gregory Maxwell authored
Testnet reset
-
- 26 May, 2012 2 commits
-
-
Pieter Wuille authored
Refactor: split CKeyID/CScriptID/CTxDestination from CBitcoinAddress
-
Pieter Wuille authored
add client startup time as an entry to debug.log
-
- 25 May, 2012 7 commits
-
-
Gavin Andresen authored
-
Gavin Andresen authored
-
Gavin Andresen authored
-
Gavin Andresen authored
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).
-
Gavin Andresen authored
Bash completion for bitcoind(1)
-
Gavin Andresen authored
-
sje397 authored
This adds a field labelled 'Immature' in the overview section under the 'unconfirmed' field, which shows mined income that has not yet matured (which is currently not displayed anywhere, even though the transactions exist in the transaction list). To do that I added a 'GetImmatureBalance' method to the wallet, and connected that through to the GUI as per the 'GetBalance' and 'GetUnconfirmedBalance' methods. I did a small 'no-op' change to make the code in adjacent functions a little more readable (imo); it was a change I had made in my repo earlier...but I thought it wouldn't hurt so left it in. Immature balance comes from mined income that is at least two blocks deep in the chain (same logic as displayed transactions). My reasoning is: - as a miner, it's a critical stat I want to see - as a miner, and taking into account the label 'immature', the uncertainty is pretty clearly implied - those numbers are already displayed in the transaction list - this makes the overview numbers add up to what's in the transaction list - it's not displayed if the immature balance is 0, so won't bother non-miners I also 'cleaned' the overview UI a little, moving code to the XML and removing HTML.
-
- 24 May, 2012 11 commits
-
-
Gavin Andresen authored
-
Pieter Wuille authored
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.
-
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
-