aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2012-06-27Stop processing messages on full send buffer and dont disconnect.Matt Corallo
Also decrease default send/receive buffer sizes from 10 to 5 mb as this patch makes it easy for a node to fill both instead of only send.
2012-06-26GUI: change language selection formatPhilip Kaufmann
- display as "language - country (locale name)", when locale name consists of 2 parts - display as "language (locale name)", when locale name consists of 1 part
2012-06-25Merge pull request #1501 from fanquake/masterWladimir J. van der Laan
QT to Qt
2012-06-25Checkpoint at block 185333 (and remove a couple of intermediate checkpoints)Gavin Andresen
2012-06-25Add Bitcoin dev CopyrightMichael Ford
2012-06-25Update commentsMichael Ford
2012-06-24fix a comment to correctly use -upgradewalletPhilip Kaufmann
2012-06-24Document -debugnet option in command line help.Jeff Garzik
Fixes #1507
2012-06-23Merge pull request #1174 from sipa/torhsGregory Maxwell
Tor hidden service support
2012-06-23Merge pull request #1503 from gmaxwell/testnet_tweaksGregory Maxwell
Remove some rule differences which aren't needed with testnet3.
2012-06-23Debug version messagesPieter Wuille
2012-06-23Add -tor and related configurationPieter Wuille
2012-06-23Rewrite CNetAddr::GetReachabilityFrom()Pieter Wuille
Add support for Tor/I2P networks, and make code more readable.
2012-06-23Node support for Tor hidden servicesPieter Wuille
This commit adds support for .onion addresses (mapped into the IPv6 by using OnionCat's range and encoding), and the ability to connect to them via a SOCKS5 proxy.
2012-06-22Merge pull request #1458 from jgarzik/tracenetJeff Garzik
Introduce -tracenet option, thereby quieting some redundant debug messages
2012-06-22Introduce -debugnet option, thereby quieting some redundant debug messagesJeff Garzik
Prior to this change, each TX typically generated 3+ debug messages, askfor tx 8644cc97480ba1537214 0 sending getdata: tx 8644cc97480ba1537214 askfor tx 8644cc97480ba1537214 1339640761000000 askfor tx 8644cc97480ba1537214 1339640881000000 CTxMemPool::accept() : accepted 8644cc9748 (poolsz 6857) After this change, there is only one message for each valid TX received CTxMemPool::accept() : accepted 22a73c5d8c (poolsz 42) and two messages for each orphan tx received ERROR: FetchInputs() : 673dc195aa mempool Tx prev not found 1e439346fc stored orphan tx 673dc195aa (mapsz 19) The -debugnet option, or its superset -debug, will restore the full debug output.
2012-06-22Merge pull request #1502 from jgarzik/getrawmempoolJeff Garzik
RPC: add 'getrawmempool', listing all transaction ids in memory pool
2012-06-22Remove some rule differences which aren't needed with testnet3.Gregory Maxwell
Bip16 and Bip30 had early activation dates for testnet, but with the reset they might as well use the same dates as the main network.
2012-06-22RPC: add 'getrawmempool', listing all transaction ids in memory poolJeff Garzik
2012-06-22Merge pull request #1495 from Diapolo/fix_CKey_mem_leakGregory Maxwell
fix a memory leak in key.cpp
2012-06-22Unit tests for base32 encode/decodePieter Wuille
2012-06-22Base32 encoding/decodingPieter Wuille
2012-06-21= instead of == in multisig_tests.cppxanatos
2012-06-21fix a memory leak in key.cppPhilip Kaufmann
- add EC_KEY_free() in CKey::Reset() when pkey != NULL - init pkey with NULL in CKey constructor
2012-06-20Remove CTxDB::ReadOwnerTxes.Pieter Wuille
It seems it wasn't ever used since 0.1.5.
2012-06-20GUI: ensure a changed bitcoin unit immediately updates the tx list amountsPhilip Kaufmann
2012-06-19print large orphan warning BEFORE deleting pvMsgGavin Andresen
2012-06-19If (for example) the new max_size must be 5 then at the end the queue.size() ↵xanatos
must be <= 5, so the exit condition must be <=, so the continuing condition must be > (and not >= as it was).
2012-06-19Fix netbase testsPieter Wuille
* Do not rely on "a.b.c" being interpreted as "a.0.b.c" * Parse numeric addresses for address families for which no device is configured
2012-06-18Merge pull request #1399 from sipa/ipparseGavin Andresen
Improve parsing of IPv6 addresses
2012-06-18Merge branch 'signbugs' of https://github.com/wizeman/bitcoinGavin Andresen
Resolved minor conflict in main.cpp
2012-06-17Merge pull request #1477 from gmaxwell/masterPieter Wuille
Fix inverted logic for !Discover/!UPNP when !Listen.
2012-06-17Merge pull request #1434 from Diapolo/GUI_fix_displayunitWladimir J. van der Laan
GUI: init with correct display unit and update it, when user changes it via options dialog
2012-06-17Merge pull request #1451 from Diapolo/sendcoinsWladimir J. van der Laan
GUI: set cursor for balance field to IBeamCursor (to show the user it IS selectable)
2012-06-17Merge pull request #1461 from laanwj/2012_06_helpmessageWladimir J. van der Laan
Show command line options as dialog when opened from debug window
2012-06-17Fix inverted logic for !Discover/!UPNP when !Listen.Gregory Maxwell
2012-06-17add the slot updateDisplayUnit() to overviewpage, sendcoinsdialog, ↵Philip Kaufmann
sendcoinsentry and connect it to displayUnitChanged() - this ensures all fields in the GUI, who use a display unit are imediately updated, when the user changes this setting in the optionsdialog / ensure used fields init with the current set display unit
2012-06-14Use a 64-bit nonce in pingPieter Wuille
Former code sent '0' as nonce, which was serialized as 32-bit.
2012-06-14Add netbase testsPieter Wuille
2012-06-14Improve parsing of IPv6 addressesPieter Wuille
Implement the following rules: * Interpret [X]:Y as host=X port=Y, if Y is an integer * Interpret X:Y as host=X port=Y, if Y is an integer and X contains no colon * Interpret X:Y as host=X:Y port=default otherwise
2012-06-14Show command line options as dialog when opened from debug windowWladimir J. van der Laan
On Linux/Mac the command-line options were printed to stderr when the button was pressed in the debug window, resulting in confusion. This is fixed in this commit by adding a separate method.
2012-06-14Merge pull request #1459 from laanwj/2012_06_trayiconmenuWladimir J. van der Laan
Reorganize tray icon menu into more logical order
2012-06-14Fix build of testcases after commit 0f10b21719e1b0d9683a142f0a7105e65f095694Wladimir J. van der Laan
2012-06-13Merge pull request #1002 from Diapolo/URL-handling_2Wladimir J. van der Laan
URI-handling code update: added safety checks and notifications
2012-06-13Merge pull request #1439 from Diapolo/ClientShutdownWladimir J. van der Laan
re-work Shutdown() function
2012-06-14Reorganize tray icon menu into more logical orderWladimir J. van der Laan
The current order of menu options in the tray menu doesn't really match expected usage patterns, this commit changes it to more logical order. - Toggle show/hide first (unchanged) - Then, send/receive coins actions, which are the critical functionality of bitcoin - Then, sign/verify message - Then finally the options, and closing with the debug window
2012-06-14URI-handling code update: added safety checks and tray-notificationsPhilip Kaufmann
2012-06-13Merge pull request #1420 from Diapolo/extend_showNormalIfMinimizedWladimir J. van der Laan
GUI: merge toggleHidden() code into showNormalIfMinimized()
2012-06-13Merge branch 'refactor_coinselect' of https://github.com/luke-jr/bitcoinGavin Andresen
2012-06-13set cursor for balance field to IBeamCursor (to show the user it IS ↵Philip Kaufmann
selectable) and set autoDefault to false for the buttons that do not need this