aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-04-15Merge branch 'http-version' of https://github.com/jgarzik/bitcoinGavin Andresen
2011-04-15Send/return full bitcoin version string in Server and User-Agent HTTP headersJeff Garzik
2011-04-15Ensure version number->string conversion is consistentJeff Garzik
2011-04-15add parameter from to listtransactions this allows querying for ranges, i.e. ↵Carlo Alberto Ferraris
transactions [from, from+count)
2011-04-15Exit when no UPnP router found and fUseUPnP gets set to 0.Matt Corallo
2011-04-13build: add note for Snow Leopard users and fix typos in linking instructionsDan Loewenherz
2011-04-13New checkpoint at block 118,000Gavin Andresen
2011-04-12pidfile support for daemongjs278
2011-04-12Merge branch 'listimmature' of /Users/gavin/src/gavin_btcGavin Andresen
2011-04-12Merge branch 'spentpertxout' of https://github.com/sipa/bitcoinGavin Andresen
2011-04-12Bugfix for spentpertxout: slow startupPieter Wuille
When starting the client, ReacceptWalletTransaction didn't skip spent transactions in its loop, and processed all old spent transactions again.
2011-04-12Merge branch 'upnp' of https://github.com/TheBlueMatt/bitcoinGavin Andresen
2011-04-12Merge branch 'spentpertxout' of https://github.com/sipa/bitcoinGavin Andresen
2011-04-12select transaction outputs separatelyPieter Wuille
Update to SelectCoins and CreateTransaction to select source transaction outputs separately instead of per whole transaction.
2011-04-12Spent per txoutPieter Wuille
Change some internal data structures to keep track of spentness of each wallet transaction output separately, to support partially-spent transactions: * an update to the data structures (vfSpent in CWalletTx instead of fSpent) * a backward-compatible update to the wallet disk format. Old clients reading back an updated wallet will ignore partially spent transactions when creating new ones, and may report a wrong balance, though. * some helper functions (CWalletTx: IsSpent, MarkSpent, MarkDirty to reset cached values, GetAvailableCredit which only counts unredeemed outputs)
2011-04-08disable -daemon on windows; bitcoind forks only with -daemon settcatm
[added setsid() call to ui.cpp, to regain consistency with init.cpp -jgarzik]
2011-04-08rfc1123Time: increase buffer size for time stringJeff Garzik
Make sure we can accomodate all possibilities.
2011-04-05Report immature coinbase transactions in listtransactionsGavin Andresen
Report coin generation transactions as 'category':'immature' until they have 120 confirmations (when they are reported as 'category':'generate', as before). If the block they are in is not part of the main chain (you lost a 'block race'), then they are reported as 'category':'orphan' (with 0 confirmations).
2011-04-05Fixed issue 76 -- RPC error where addresses from addressbook's sending tab ↵Eric Swanson
appear in listaccounts
2011-04-05Merge branch 'deadlock-fixes' of https://github.com/jgarzik/bitcoinGavin Andresen
2011-04-05RPC sendmany must acquire cs_main lockJeff Garzik
2011-04-04Fix deadlocks in setaccount, sendfrom RPC callsJeff Garzik
SendMoney*() now requires caller to acquire cs_main. GetAccountAddress() now requires caller to acquire cs_main, cs_mapWallet. Ordering is intended to match these two callchains[1]: 1. CRITICAL_BLOCK(cs_main) ProcessMessage(pfrom, strCommand, vMsg) AddToWalletIfMine() AddToWallet(wtx) CRITICAL_BLOCK(cs_mapWallet) 2. CRITICAL_BLOCK(cs_main) ProcessMessage(pfrom, strCommand, vMsg) AddToWalletIfMine() AddToWallet(wtx) CRITICAL_BLOCK(cs_mapWallet) walletdb.WriteName(PubKeyToAddress(vchDefaultKey), "") CRITICAL_BLOCK(cs_mapAddressBook) Spotted by ArtForz. Additional deadlock fixes by Gavin. [1] http://www.bitcoin.org/smf/index.php?topic=4904.msg71897#msg71897
2011-04-03Remove 4way SSE2 scanhash implementation.Jeff Garzik
2011-04-01Update DNS seed listJeff Garzik
2011-03-30Allow UPnP mapping when USE_UPNP is defined and miniupnpc is installed at ↵Matt Corallo
build time(statically linked). Thanks joepie91 for the translation of the new copyright notices into Dutch. Thanks sipa for the translation of the new copyright notices into French. Thanks megu for the translation of the new copyright notices into Spanish. Thanks justmoon/Blitzboom for the translation of the new copyright notices into German. Thanks Joozero for the translation of the new copyright notices into Italian. Remaining translations were provided by Google Translate.
2011-03-25allow coredumps by not catching SIGSEGVtcatm
2011-03-23Merge branch 'master' of git://github.com/bitcoin/bitcoinJeff Garzik
2011-03-23[locale] Regenerate es, nl binary message catalogsJeff Garzik
2011-03-23Merge branch 'master' of https://github.com/smola/bitcoin into tmpJeff Garzik
2011-03-23Merge branch 'dutchloc' of https://github.com/sipa/bitcoin into tmpJeff Garzik
2011-03-23catch SIGINT, SIGHUP and SIGSEGV and shutdown cleanlytcatm
2011-03-21daemon-mode: add sleep() loop to prevent defunct child process, call ↵tcatm
setsid() in child
2011-03-19Updated dutch translationSven Slootweg
2011-03-17Update copyright in About box from 2010 to 2011Gavin Andresen
2011-03-16Update Spanish translation.Santiago M. Mola
2011-03-16Fix -logtimestamps to only print time prefix once per output lineJeff Garzik
Incorporate BlueMatt's fix to only timestamp upon new line, and move -logtimestamp checking outside OutputDebugPrintF() to better future-proof it.
2011-03-14Merge branch 'shy'Gavin Andresen
2011-03-13Merge branch 'dns-seed' of https://github.com/jgarzik/bitcoinGavin Andresen
2011-03-13Merge branch 'log-timestamp' of https://github.com/TheBlueMatt/bitcoinGavin Andresen
2011-03-13Merge branch 'limitfree' of /Users/gavin/src/integration_btcGavin Andresen
2011-03-13Merge branch 'daemon-mode' of https://github.com/tcatm/bitcoinGavin Andresen
2011-03-13Merge branch 'subcent-change' of https://github.com/tcatm/bitcoinGavin Andresen
2011-03-13sendmany RPC command, to send to multiple recipients in one transaction.Gavin Andresen
2011-03-13Make sure rate-limiting code is thread-safeGavin Andresen
2011-03-13Continuously rate-limit free transactions.Gavin Andresen
Changed algorithm to use continuous exponential function instead of discrete 10-minute window. Changed -limitfreerelay to be kilobytes-per-minute instead of boolean.
2011-03-13remove from/message field from uiprojecttcatm
2011-03-10Merge branch 'smalltxfix' of https://github.com/gavinandresen/bitcoin-git ↵Jeff Garzik
into tmp
2011-03-10Merge branch 'master' of https://github.com/devrandom/bitcoin into tmpJeff Garzik
2011-03-10Update copyright in About box from 2010 to 2011Gavin Andresen
2011-03-10Bump version number to 0.3.21 (lest we forget)Gavin Andresen