aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-10-07Fix build on windows and macGavin Andresen
Replaced all occurrences of #if* __WXMSW__ with WIN32, and all occurrences of __WXMAC_OSX__ with MAC_OSX, and made sure those are defined appropriately in the makefile and bitcoin-qt.pro.
2011-10-06Merge pull request #572 from delirium---/masterGavin Andresen
Fix for win64 build
2011-10-06Fix for 64bit buildVictor Leschuk
2011-10-06Merge pull request #564 from luke-jr/optimize_remove_CheckWork_delayGavin Andresen
Remove 2 second sleep from CheckWork
2011-10-05Merge pull request #566 from luke-jr/optimize_http_statusGavin Andresen
Optimize HTTP status messages
2011-10-05Use C's const char* for status strings rather than C++'s std::string, which ↵David Joel Schwartz
is slower
2011-10-05Fix miner_test unit test bugGavin Andresen
2011-10-05Merge branch 'listsinceblock' of https://github.com/cdhowie/bitcoinGavin Andresen
2011-10-05Auto-build dependenciesGavin Andresen
2011-10-05Update mac Makefile and build instructions to use MacPortsGavin Andresen
2011-10-05Merge pull request #545 from tcatm/remove-addr.txtGavin Andresen
remove code that reads addr.txt in LoadAddreses()
2011-10-05Merge branch 'no-cryptopp' of https://github.com/tcatm/bitcoinGavin Andresen
2011-10-05Merge pull request #558 from ↵Gavin Andresen
luke-jr/bugfix_CreateThread_ThreadSocketHandler_errReporting Bugfix: ThreadSocketHandler creation error
2011-10-05Merge pull request #561 from luke-jr/optimize_conn_adjtimeGavin Andresen
Only GetAdjustedTime once for the retry loop
2011-10-05Send "Connection: close" HTTP header with JSON-RPC requests (client)Luke Dashjr
2011-10-04Merge pull request #549 from enmaku/masterGavin Andresen
Python scripts demonstrating using RPC to keep passphrases out of shell history/etc.
2011-10-04Merge pull request #547 from TheBlueMatt/build-updatesGavin Andresen
Update release-process to point to gitian.sigs repo.
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-03Added bitrpc.py which allows for sending of all standard Bitcoin commands ↵David Perry
via RPC rather than as command line args. Signed-off-by: David Perry <enmaku@gmail.com>
2011-10-03Added wallet toolsDavid Perry
Signed-off-by: David Perry <enmaku@gmail.com>
2011-10-03Declare integer constant LLGavin Andresen
2011-10-03Update release-process to point to gitian.sigs repo.Matt Corallo
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-01Merge pull request #476 from forrestv/getmemorypoolGavin Andresen
Added RPC call 'getmemorypool' for p2p mining pools
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-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 #542 from laanwj/qt2Gavin Andresen
qmake build system improvements
2011-09-29qmake build system improvementsWladimir J. van der Laan
- USE_SSL=1 to support RPC SSL - BDB_LIB_SUFFIX= to link against specific BDB version - Fix typo - Start lrelease during qmake phase to prevent errors/warnings
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-29Merge pull request #538 from tcatm/deprecate-midstateGavin Andresen
deprecate midstate and hash1 in getwork
2011-09-28Update "other files" in Qt Creator with all documentation now that the ↵Wladimir J. van der Laan
projects merged
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-28Merge pull request #536 from TheBlueMatt/build-updatesJeff Garzik
Update release-process.txt with gitian release instructions.
2011-09-28deprecate midstate and hash1 in getworkNils Schneider
2011-09-28remove deprecated RPCsNils Schneider
2011-09-28Update release-process.txt with gitian release instructions.Matt Corallo
2011-09-27Merge pull request #533 from alexwaters/readmeJeff Garzik
Updated readme file with timers.
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