aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-01-17fix the build (port IP validation in options to network refactoring)Wladimir J. van der Laan
2012-01-17Revert to global progress indication (see #753)Wladimir J. van der Laan
2012-01-17Fix handling of default portsPieter Wuille
2012-01-16Merge branch 'keepnode' of https://github.com/TheBlueMatt/bitcoinGavin Andresen
2012-01-15Merge pull request #758 from Matoking/masterWladimir J. van der Laan
Ui: Clear All tooltip and updated About dialog with 2012
2012-01-14Added mintime and curtime to RPC getmemorypoolForrest Voight
2012-01-14Separated COINBASE_FLAGS out into main.h and made RPC getmemorypool return itForrest Voight
2012-01-14*Clear all has a tooltip now *About dialog updatedJanne Pulkkinen
2012-01-14Replace tabs with four spaces to comply with coding standard in doc/coding.txtLars Rasmusson
2012-01-13Remove base58 encoding from validateaddress/addmultisigaddressGavin Andresen
base58-encoding of full/compressed public keys needs more thought; it probably makes sense to define a base58 encoding that includes a version byte and a checksum. So just support hex and bitcoin-address encodings for now.
2012-01-13Refactor: needing to call ConnectInputs to process coinbase transactions was ↵Gavin Andresen
counter-intuitive
2012-01-13Refactored ConnectInputs, so valid-transaction-checks are done before ↵Gavin Andresen
ECDSA-verifying signatures.
2012-01-13Replace OP_EVAL (BIP 12) with Pay-to-script-hash (BIP 16).Gavin Andresen
2012-01-13Remove not-used-anywhere scriptPrereq from SignSignature()Gavin Andresen
2012-01-13Merge branch 'getmininginfo' of https://github.com/luke-jr/bitcoinGavin Andresen
2012-01-12Minor code cleanup to use fHaveUPnP instead of #ifdefMatt Corallo
2012-01-12Add -keepnode which attempts to -addnode and keep a connection openMatt Corallo
2012-01-12Compile with extra warnings turned on. And more makefile/code tidying up.Gavin Andresen
This turns on most gcc warnings, and removes some unused variables and other code that triggers warnings. Exceptions are: -Wno-sign-compare : triggered by lots of comparisons of signed integer to foo.size(), which is unsigned. -Wno-char-subscripts : triggered by the convert-to-hex functions (I may fix this in a future commit).
2012-01-12collect more info on tx pooling and block finding for getmininginfoLuke Dashjr
2012-01-12Add new "getmininginfo" JSON-RPC method, with mining-only fields moved out ↵Luke Dashjr
of "getinfo"
2012-01-12Remove broken Visual C++ makefile.vc, and removed annoying HEADERS= list ↵Gavin Andresen
from other makefiles
2012-01-12Merge pull request #743 from gavinandresen/blocknotifyGavin Andresen
-blocknotify : run a command when best-block changes
2012-01-10Merge pull request #649 from sipa/comprpubkeyPieter Wuille
Compressed pubkeys
2012-01-10Merge pull request #752 from luke-jr/qt_txnidWladimir J. van der Laan
Qt: Show transaction ID in details
2012-01-10Qt: Show transaction ID in detailsLuke Dashjr
2012-01-09Remove unused definitionPieter Wuille
2012-01-09Merge pull request #746 from laanwj/tdesc_roGavin Andresen
make transaction description read-only (UI fix)
2012-01-09Merge pull request #750 from TheBlueMatt/anonymousGavin Andresen
Remove mentions on anonymity in debian folder.
2012-01-09Unit tests for EC key routinesPieter Wuille
This tests: * creation of keys from base58-encoded strings * extracting public keys and addresses * compressed public keys * compact signatures and key recovery
2012-01-09Compact signatures with compressed pubkeysPieter Wuille
2012-01-09Compressed pubkeysPieter Wuille
This patch enabled compressed pubkeys when -compressedpubkeys is passed. These are 33 bytes instead of 65, and require only marginally more CPU power when verifying. Compressed pubkeys have a different corresponding address, so it is determined at generation. When -compressedpubkeys is given, all newly generated addresses will use a compressed key, while older/other addresses keep using normal keys. Unpatched clients will relay and verify these transactions.
2012-01-07Remove mentions on anonymity in debian folder.Matt Corallo
These should never have been there, bitcoin isnt anonymous without a ton of work that virtually no users will ever be willing and capable of doing.
2012-01-07Merge pull request #735 from sipa/netbasePieter Wuille
Network stack refactor
2012-01-06Network stack refactorPieter Wuille
This introduces CNetAddr and CService, respectively wrapping an (IPv6) IP address and an IP+port combination. This functionality used to be part of CAddress, which also contains network flags and connection attempt information. These extra fields are however not always necessary. These classes, along with logic for creating connections and doing name lookups, are moved to netbase.{h,cpp}, which does not depend on headers.h. Furthermore, CNetAddr is mostly IPv6-ready, though IPv6 functionality is not yet enabled for the application itself.
2012-01-06make transaction description read-only (UI fix)Wladimir J. van der Laan
2012-01-05Merge pull request #740 from TheBlueMatt/perfGavin Andresen
Fix horrific performance found by gmaxwell.
2012-01-05Add support for opening bitcoin: URIs directly.Matt Corallo
2012-01-05Automatically refocus on new SendCoinsEntrys and scroll to them.Matt Corallo
2012-01-04Fix horrific performance found by gmaxwell.Matt Corallo
2012-01-03-blocknotify=command argument, implemented using system() and boost::threadGavin Andresen
2012-01-03Merge pull request #731 from laanwj/txshowfixGavin Andresen
Fix transaction type in UI
2012-01-03Merge branch 'getblock'Gavin Andresen
2012-01-03I broke -testnet with my TOR option-parsing fixes.Gavin Andresen
2012-01-03Merge pull request #741 from laanwj/typo734fixGavin Andresen
Fix typo (#734)
2012-01-03Merge branch 'bugfix_multisig' of https://github.com/coderrr/bitcoinGavin Andresen
2012-01-03Merge branch 'gitianfix' of https://github.com/TheBlueMatt/bitcoinGavin Andresen
2012-01-03Fix issue #659, and cleanup wallet/command-line argument handling a bitGavin Andresen
2012-01-03Fix typo (#734)Wladimir J. van der Laan
2012-01-02Merge pull request #738 from sipa/dnsseed-fixPieter Wuille
Fix dnsseed deadlock
2012-01-03Fix some address-handling deadlocksPieter Wuille
Made three critical blocks for cs_mapAddresses smaller, and moved writing to the database out of them. This should also improve the concurrency of the code.