aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-05-17doc/README: bump version to 0.3.22v0.3.22rc1Jeff Garzik
2011-05-15Build error mingw, missing std::Gavin Andresen
2011-05-15make bitcoin include files more modularWladimir J. van der Laan
2011-05-14Merge pull request #224 from TheBlueMatt/mingwbuildfixPieter Wuille
Fix MinGW build due to bad pointers to ui.rc pixmaps stuff.
2011-05-14Fix MinGW build due to bad pointers to ui.rc pixmaps stuff.Matt Corallo
2011-05-14Merge pull request #223 from sipa/dnslookupPieter Wuille
bugfix in dnslookup code: didn't compile in mingw
2011-05-14bugfix in dnslookup code: didn't compile in mingwPieter Wuille
2011-05-12Merge pull request #215 from gavinandresen/negativemoveJeff Garzik
Allow move RPC to take account balances negative
2011-05-12Merge branch 'fUseUPnPfix' of https://github.com/TheBlueMatt/bitcoin into tmpJeff Garzik
2011-05-12Merge pull request #192 from sipa/dnslookupJeff Garzik
Support for name lookups in -connect and -addnode
2011-05-12Add #ifdef USE_UPNP around usage of fUseUPnP to fix build failure.Daniel Holbert
2011-05-11Merge pull request #218 from jgarzik/fee-updateJeff Garzik
Update TX fee to 0.0005 BTC
2011-05-11Decrease minimum TX fee to 0.0005 BTC.Jeff Garzik
2011-05-11Replace CENT with new constant MIN_TX_FEE, where appropriate.Jeff Garzik
MIN_TX_FEE==CENT remains true (until next commit).
2011-05-10Support for name lookups in -connect and -addnodePieter Wuille
* A new option -dns is introduced that enables name lookups in -connect and -addnode, which is not enabled by default, as it may be considered a security issue. * A Lookup function is added that supports retrieving one or more addresses based on a host name * CAddress constructors (optionally) support name lookups. * The different places in the source code that did name lookups are refactored to use NameLookup or CAddress instead (dns seeding, irc server lookup, getexternalip, ...). * Removed ToStringLog() from CAddress, and switched to ToString(), since it was empty.
2011-05-09Merge pull request #150 from jgarzik/settxfeeJeff Garzik
Add 'settxfee' RPC, to change TX fee setting at runtime
2011-05-09Allow move RPC to take account balances negativeGavin Andresen
Use case: Customer owes you bitcoins, so you create a payment address associated with an account with a negative balance (the amount they owe). When customer pays, that account balance will go to zero.
2011-05-09Add settxfee RPC, to permit setting default TX fee at runtime.Jeff Garzik
2011-05-09Help for sendtoaddress/sendfrom was wrong: amounts are rounded to 0.00000001Gavin Andresen
2011-05-09Merge branch 'master' of github.com:bitcoin/bitcoinGavin Andresen
2011-05-09listtransactions number-of-params check was wrong.Gavin Andresen
2011-05-09Manual merge of jaromil's source tree reorg commit.Jeff Garzik
Conflicts: src/sha256.cpp
2011-05-09Fix broken build (invalid use of qualified name std::advance)Gavin Andresen
2011-05-09Merge pull request #160 from CAFxX/listtransactions-fromGavin Andresen
add parameter "from" to listtransactions (range queries)
2011-05-09Merge pull request #205 from forrestv/caseinsensitive_rpc_headersGavin Andresen
Case-Insensitive JSON-RPC HTTP Headers
2011-05-08Initial commit of changes to make JSON-RPC HTTP headers case-insensitive, as ↵Forrest Voight
per RFC 2616
2011-05-07Allow using the [from] parameter also from command-lineCarlo Alberto Ferraris
2011-05-06Merge branch 'remove-4way' of github.com:jgarzik/bitcoin into tmpJeff Garzik
Conflicts: makefile.unix
2011-05-06Merge pull request #197 from TheBlueMatt/errorfixJeff Garzik
Fix GUI crash
2011-05-06When an error is returned, the client crashes as EndModal is called twice.Matt Corallo
This fixes that and simply returns instead. At least GTK won't complain.
2011-05-06Merge pull request #196 from amiryal/masterJeff Garzik
Improve UPNP build instructions
2011-05-06Clarify the meaning of USE_UPNP in build-unix.txtAmir Yalon
2011-05-05Merge pull request #194 from johnmaguire2013/trayGavin Andresen
Removed tooltip balance until it's fixed.
2011-05-05Merge pull request #193 from TheBlueMatt/nogenoptionGavin Andresen
Remove the option to generate coins from the Options Dialog.
2011-05-05removed tooltip balance until it can be made to change without opening the UIJohn Maguire
2011-05-05Remove the option to generate coins from the Options Dialog.Matt Corallo
2011-05-03Fix broken build (remove declarations of GUI generate methods)Gavin Andresen
2011-05-03Merge pull request #142 from jgarzik/remove-gui-gen.Gavin Andresen
Remove GUI 'generate coins' option.
2011-05-03Merge pull request #173 from gavinandresen/testnet_isstandard.Gavin Andresen
Accept non-standard transactions on testnet.
2011-05-03Merge pull request #190 from johnmaguire2013/tray.Gavin Andresen
Added balance to tooltip and send coin option to tray menu
2011-05-01Merge pull request #178 from wizeman/link-pthread.Pieter Wuille
Link with libpthread on Linux, required by libboost_thread.
2011-05-01fixed some translations which was... weirdJohn Maguire
2011-05-01added balance to tooltipsJohn Maguire
2011-05-01added "Send Bitcoins" option in the tray menuJohn Maguire
2011-05-01Merge pull request #179 from wizeman/segfault-lockfile.Gavin Andresen
Fix segfault when we're unable to create the lock file.
2011-05-01Merge pull request #181 from sipa/fixcheckconf.Gavin Andresen
Bugfix in recursive check in IsConfirmed()
2011-05-01Merge pull request #186 from TheBlueMatt/nopng.Gavin Andresen
Remove unnecessary line which creates a dependency on wx's png library.
2011-05-01Merge pull request #187 from devrandom/master.Gavin Andresen
New gitian descriptor for 0.3.21
2011-04-28Bump version number to 0.3.22Gavin Andresen
Doing this now because I always forget to do it later. (I'm hoping the next release will actually be 0.4.0)
2011-04-28gitian: strip binariesdevrandom