aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2011-10-05Send "Connection: close" HTTP header with JSON-RPC requests (client)Luke Dashjr
2011-10-04Remove 2 second sleep from CheckWorkDavid Joel Schwartz
2011-10-03Bugfix: report error creating ThreadSocketHandler thread just like the restLuke Dashjr
2011-10-03Only GetAdjustedTime once for the retry loopLuke Dashjr
2011-10-03Declare integer constant LLGavin Andresen
2011-10-01remove code that reads addr.txt in LoadAddreses()Nils Schneider
2011-10-01Merge pull request #543 from laanwj/utiltestsGavin Andresen
Remove possibility of 63 bit overflow in ParseMoney
2011-10-01Added RPC call 'getmemorypool' that provides everything needed to construct ↵Forrest Voight
a block with a custom generation transaction and submit a solution getmemorypool [data] If [data] is not specified, returns data needed to construct a block to work on: "version" : block version "previousblockhash" : hash of current highest block "transactions" : contents of non-coinbase transactions that should be included in the next block "coinbasevalue" : maximum allowable input to coinbase transaction, including the generation award and transaction fees "time" : timestamp appropriate for next block "bits" : compressed target of next block If [data] is specified, tries to solve the block and returns true if it was successful.
2011-10-01remove possibility of 63 bit overflow in ParseMoneyWladimir J. van der Laan
- also, add unit tests for various functions in util.cpp/util.h
2011-10-01only install translator when not emptyWladimir J. van der Laan
2011-09-30simpler ByteReverseNils Schneider
2011-09-30remove cryptopp dependency, add simple unittest for SHA256Transform()Nils Schneider
2011-09-30Merge pull request #524 from sipa/signandverifGavin Andresen
Sign and verify message with bitcoin address
2011-09-29Merge pull request #539 from laanwj/qt2Gavin Andresen
Qt GUI updates
2011-09-29Merge pull request #537 from tcatm/remove-deprecated-rpcsNils Schneider
remove deprecated RPCs
2011-09-29Add assertion size>0 to MedianFilterWladimir J. van der Laan
2011-09-28Merge branch 'master' of https://github.com/bitcoin/bitcoinWladimir J. van der Laan
Conflicts: .gitignore (used upstream version) bitcoin-qt.pro
2011-09-28use median filter for peer-reported reported number of blocksWladimir J. van der Laan
- fixes problem that one misconfigured or malicious node can mess up progress bar - implementation in src/util.h - testcase in src/test/util_tests.cpp
2011-09-28deprecate midstate and hash1 in getworkNils Schneider
2011-09-28remove deprecated RPCsNils Schneider
2011-09-27translation handling improvementsWladimir J. van der Laan
- automatically build binary translation files in qmake/make - roll translations into resource file and executable, to simply installation
2011-09-27Use key recovery for message signaturesPieter Wuille
Instead of encoding the public key inside the signature string, use key recovery to do verification. This allows 88-character base64-encoded signature strings instead of 188-character ones.
2011-09-27Compact signatures and key recoveryPieter Wuille
Introduce a new type of signatures that are only 65 bytes long, and allow reconstruction of the public key that was used to create the signature.
2011-09-27base64-based sign/verifyPieter Wuille
2011-09-27Incorporate pubkey in signature, check based on addressPieter Wuille
Include the public key in the signature string, to allow verification based on address.
2011-09-27Sign and verify message with bitcoin address and public keyKhalahan
Add padding to input (fixed string + address) before hashing
2011-09-27Test case for base64 encode/decodePieter Wuille
2011-09-27Inline base64 encoder/decoderPieter Wuille
This replaces the openssl-based base64 encoder and decoder with a more efficient internal one. Tested against the rfc4648 test vectors. Decoder is based on JoelKatz' version.
2011-09-27Faster Base64 decoder.JoelKatz
2011-09-27Removing the if statement entirely - not needed.Janne Pulkkinen
2011-09-27Remove DoS penalty for SigOpCount or immature transactionsGavin Andresen
2011-09-27Send Coins page not cleared when changing tabs. Clear all button for ↵Janne Pulkkinen
clearing the entries
2011-09-26Fix build: put back rules to build cryptopp filesGavin Andresen
2011-09-26Remove wxWidgetsGavin Andresen
Makefiles now build bitcoind only. qmake/make in top-level directory is used to build Bitcoin QT Deleted almost all #ifdef GUI from the code (left one possibly controversial one) Deleted xpm/ files.
2011-09-26Skip verifying transaction signatures during initial block-chain downloadGavin Andresen
2011-09-26Bump version to 0.4.1Gavin Andresen
2011-09-26Merge pull request #513 from cjdelisle/feature-hardeningGavin Andresen
Hardening
2011-09-26Merge pull request #517 from gavinandresen/DoSpreventionGavin Andresen
Denial-of-service prevention
2011-09-26Merge pull request #521 from laanwj/qtGavin Andresen
Qt GUI
2011-09-24Change define to determine use of DBUS to USE_DBUS, to prevent overlap with ↵Wladimir J. van der Laan
Qt-defined QT_DBUS
2011-09-23Merge branch 'master' of https://github.com/bitcoin/bitcoinWladimir J. van der Laan
2011-09-22show balance in sendcoins screen (issue #24)Wladimir J. van der Laan
2011-09-21More denial-of-service misbehavior detection: version/addr/inv/getdata messagesGavin Andresen
2011-09-21Transaction/Block denial-of-service detection/responseGavin Andresen
2011-09-21Framework for banning mis-behaving peersGavin Andresen
2011-09-21SetMockTime() for cleaner unit testingGavin Andresen
2011-09-20Merge pull request #522 from sipa/minorfixJeff Garzik
SocketHandler thread can be detached
2011-09-19put Q_OBJECT everywhere it should be (removes warnings when running lupdate)Wladimir J. van der Laan
2011-09-19SocketHandler thread can be detachedPieter Wuille
2011-09-18assure that base bitcoind and bitcoin still buildWladimir J. van der Laan