aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2011-07-02Make UPnP default on Bitcoin but not on Bitcoind.Matt Corallo
This is a bit of an ugly hack, but its the only way to do it.
2011-07-01Merge pull request #343 from muggenhor/proper-http-server-rejectionJeff Garzik
rpc server: send '403 Forbidden' to rejected clients
2011-07-01Merge pull request #368 from TheBlueMatt/dnsseedJeff Garzik
Only use dnsseeds when not on testnet.
2011-07-01Merge pull request #371 from EricJ2190/masterJeff Garzik
Updated Visual C++ Makefile
2011-07-01Enable DNS seeding by default.Jeff Garzik
2011-07-01Updated Visual C++ makefile.Eric Hosmer
2011-07-01Only use dnsseeds and static seeds when not on testnet.Matt Corallo
2011-07-01Limit response to getblocks to half of output buffer sizePieter Wuille
Introduce SendBufferSize() and ReceiveBufferSize(), and limit the blocks sent as response to the "getblocks" message to half of the active send buffer size.
2011-06-30Merge pull request #367 from TheBlueMatt/dnsseedJeff Garzik
Add new DNSSeed dnsseed.bluematt.me.
2011-06-30Add new DNSSeed dnsseed.bluematt.me.Matt Corallo
This seed will pull a random set of 20 nodes from the network which are tested to be online instead of a static list.
2011-06-28Fix connection failure debug outputJoerie de Gram
2011-06-27Merge pull request #356 from gavinandresen/unitTestGavin Andresen
Boost unit-testing framework. Thanks to Steve (gasteve in irc) for original code.
2011-06-27Boost unit-testing framework.Gavin Andresen
make -f makefile.{unix,osx,mingw} test_bitcoin to compile dumb, do-almost-nothing placeholder unit tests.
2011-06-26rpc: don't send 403 when using SSL to prevent DoSGiel van Schijndel
Signed-off-by: Giel van Schijndel <me@mortis.eu>
2011-06-26rpc server: send '403 Forbidden' to rejected clientsGiel van Schijndel
In order to be a proper HTTP implementation clients that aren't allowed to connect to the RPC server (using -rpcallowip), should receive a proper HTTP response. So instead of closing the connection on them send a '403 Forbidden' status. Signed-off-by: Giel van Schijndel <me@mortis.eu>
2011-06-26Fix segfault when creating new walletPieter Wuille
The initialization of the default key used keyUser instead of vchDefaultKey. keyUser is now complete removed.
2011-06-24Merge branch 'totalblocksestimate1' of https://github.com/laanwj/bitcoinGavin Andresen
2011-06-23Edited init.cpp to include a check that -datadir existsJames Burkle
2011-06-20Bugfixes walletclassPieter Wuille
Some problems found by ius: * compiler complains with no return after critical section block * CKeyStore::GetPrivKey(key) was undefined for unknown key * missing return statement in GetChange()
2011-06-19Fix missing includes needed for Boost 1.46.Shane Wegner
2011-06-18CWalletTx::GetAmounts(): pass NULL for CKeyStore*, rather than falseJeff Garzik
to fix warning.
2011-06-19add GetTotalBlocksEstimate() function, move magic number to constantWladimir J. van der Laan
2011-06-15CWallet classPieter Wuille
* A new class CKeyStore manages private keys, and script.cpp depends on access to CKeyStore. * A new class CWallet extends CKeyStore, and contains all former wallet-specific globals; CWallet depends on script.cpp, not the other way around. * Wallet-specific functions in CTransaction/CTxIn/CTxOut (GetDebit, GetCredit, GetChange, IsMine, IsFromMe), are moved to CWallet, taking their former 'this' argument as an explicit parameter * CWalletTx objects know which CWallet they belong to, for convenience, so they have their own direct (and caching) GetDebit/... functions. * Some code was moved from CWalletDB to CWallet, such as handling of reserve keys. * Main.cpp keeps a set of all 'registered' wallets, which should be informed about updates to the block chain, and does not have any notion about any 'main' wallet. Function in main.cpp that require a wallet (such as GenerateCoins), take an explicit CWallet* argument. * The actual CWallet instance used by the application is defined in init.cpp as "CWallet* pwalletMain". rpc.cpp and ui.cpp use this variable. * Functions in main.cpp and db.cpp that are not used by other modules are marked static. * The code for handling the 'submitorder' message is removed, as it not really compatible with the idea that a node is independent from the wallet(s) connected to it, and obsolete anyway.
2011-06-15move wallet code to separate filePieter Wuille
This introduces two new source files, keystore.cpp and wallet.cpp with corresponding headers. Code is moved from main and db, in a preparation for a follow-up commit which introduces the classes CWallet and CKeyStore.
2011-06-14Merge pull request #226 from jordanlewis/betterheadersJeff Garzik
Optimize header dependencies; improve Makefile dependency graph
2011-06-14FormatFullVersion: build fix related to recent translation improvementJeff Garzik
2011-06-14Merge pull request #314 from codler/translateJeff Garzik
Update swedish translation
2011-06-12Faster timeout when connectingPieter Wuille
Use non-blocking connects, and a select() call to wait a predefined time (5s by default, but configurable with -timeout) for either success or failure. This allows much more connections to be tried per time unit. Based on a patch by phantomcircuit.
2011-06-12Double check translation and improved a translation stringHan Lin Yap
2011-06-11Remove unused variableHan Lin Yap
2011-06-10Lower minimum relay TX fee to 0.0001 (from 0.0005) BTC.Jeff Garzik
2011-06-09Merge pull request #304 from TheBlueMatt/cpufixJeff Garzik
Fix CPU Usage bug when using -nolisten and have no connections.
2011-06-07Merge pull request #293 from tcatm/keypool-fixGavin Andresen
create keypool in LoadWallet()
2011-06-07Fix CPU Usage bug when using -nolisten and have no connections.Matt Corallo
2011-06-06Demystify a few magic numbers.Doug Huff
2011-06-05Reduce minimum TX fee for new transactions, to 0.0005.Jeff Garzik
2011-06-05Bump version to 0.3.23.Jeff Garzik
2011-06-05Merge pull request #264 from sipa/mintxfeefixJeff Garzik
Fix for small change outputs
2011-06-05Merge pull request #255 from sipa/rescanupdateJeff Garzik
Update transactions already in the wallet when rescanning.
2011-06-03create keypool in LoadWallet()Nils Schneider
2011-06-02Fix rfc1918 and rfc3927 compliance for ignoring non-internet-routable hosts.Doug Huff
2011-06-02Bugfix for dnsseed introduced by dnslookupv0.3.22Pieter Wuille
2011-06-02Merge remote branch 'upstream/master'Pieter Wuille
2011-05-28Merge pull request #278 from TheBlueMatt/win32sslv0.3.22rc6Pieter Wuille
Update to openssl-1.0.0d and enable RPC-SSL on Win32
2011-05-28bugfix: accept free transactionsPieter Wuille
2011-05-27Fix GUI build on UNIX.Matt Corallo
2011-05-27Update to openssl-1.0.0d and enable RPC-SSL on Win32Matt Corallo
2011-05-27Handle high DPI a bit more gracefully on Win32. #243Matt Corallo
Not ideal, icons for send and address book don't show, just the standard bitcoin icon, and balance is still cut off, but the number is readable.
2011-05-26loss of significance in difficulty (by lfm)Pieter Wuille
For instance any nBits compressed value from 0x1a44b800 thru 0x1a44b9ff will show as difficulty 244139.4816. This patch will more accurately convert the nBits compressed values to the double difficulty. This will display any of the recent difficulty levels slightly differently though. Early difficulties and testnet difficulties are not large enough to trigger this bug. None of the actual targets or compressed targets are changed, only the conversion to the floating point difficulty is changed and afaik it is only ever displayed, never converted back so the patch does not effect the target calculations, binary files, databases nor the binary protocol.
2011-05-26Merge pull request #267 from sipa/mintxrelayPieter Wuille
Separate required fee for relaying and creation