Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-10-05 | Merge pull request #558 from ↵ | Gavin Andresen | |
luke-jr/bugfix_CreateThread_ThreadSocketHandler_errReporting Bugfix: ThreadSocketHandler creation error | |||
2011-10-05 | Merge pull request #561 from luke-jr/optimize_conn_adjtime | Gavin Andresen | |
Only GetAdjustedTime once for the retry loop | |||
2011-10-05 | Send "Connection: close" HTTP header with JSON-RPC requests (client) | Luke Dashjr | |
2011-10-04 | Merge pull request #549 from enmaku/master | Gavin Andresen | |
Python scripts demonstrating using RPC to keep passphrases out of shell history/etc. | |||
2011-10-04 | Merge pull request #547 from TheBlueMatt/build-updates | Gavin Andresen | |
Update release-process to point to gitian.sigs repo. | |||
2011-10-03 | Bugfix: report error creating ThreadSocketHandler thread just like the rest | Luke Dashjr | |
2011-10-03 | Only GetAdjustedTime once for the retry loop | Luke Dashjr | |
2011-10-03 | Added 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-03 | Added wallet tools | David Perry | |
Signed-off-by: David Perry <enmaku@gmail.com> | |||
2011-10-03 | Declare integer constant LL | Gavin Andresen | |
2011-10-03 | Update release-process to point to gitian.sigs repo. | Matt Corallo | |
2011-10-01 | Merge pull request #543 from laanwj/utiltests | Gavin Andresen | |
Remove possibility of 63 bit overflow in ParseMoney | |||
2011-10-01 | Merge pull request #476 from forrestv/getmemorypool | Gavin Andresen | |
Added RPC call 'getmemorypool' for p2p mining pools | |||
2011-10-01 | Added 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-01 | remove possibility of 63 bit overflow in ParseMoney | Wladimir J. van der Laan | |
- also, add unit tests for various functions in util.cpp/util.h | |||
2011-09-30 | Merge pull request #524 from sipa/signandverif | Gavin Andresen | |
Sign and verify message with bitcoin address | |||
2011-09-29 | Merge pull request #542 from laanwj/qt2 | Gavin Andresen | |
qmake build system improvements | |||
2011-09-29 | qmake build system improvements | Wladimir 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-29 | Merge pull request #539 from laanwj/qt2 | Gavin Andresen | |
Qt GUI updates | |||
2011-09-29 | Merge pull request #537 from tcatm/remove-deprecated-rpcs | Nils Schneider | |
remove deprecated RPCs | |||
2011-09-29 | Add assertion size>0 to MedianFilter | Wladimir J. van der Laan | |
2011-09-29 | Merge pull request #538 from tcatm/deprecate-midstate | Gavin Andresen | |
deprecate midstate and hash1 in getwork | |||
2011-09-28 | Update "other files" in Qt Creator with all documentation now that the ↵ | Wladimir J. van der Laan | |
projects merged | |||
2011-09-28 | Merge branch 'master' of https://github.com/bitcoin/bitcoin | Wladimir J. van der Laan | |
Conflicts: .gitignore (used upstream version) bitcoin-qt.pro | |||
2011-09-28 | use median filter for peer-reported reported number of blocks | Wladimir 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-28 | Merge pull request #536 from TheBlueMatt/build-updates | Jeff Garzik | |
Update release-process.txt with gitian release instructions. | |||
2011-09-28 | deprecate midstate and hash1 in getwork | Nils Schneider | |
2011-09-28 | remove deprecated RPCs | Nils Schneider | |
2011-09-28 | Update release-process.txt with gitian release instructions. | Matt Corallo | |
2011-09-27 | Merge pull request #533 from alexwaters/readme | Jeff Garzik | |
Updated readme file with timers. | |||
2011-09-27 | translation handling improvements | Wladimir J. van der Laan | |
- automatically build binary translation files in qmake/make - roll translations into resource file and executable, to simply installation | |||
2011-09-27 | Use key recovery for message signatures | Pieter 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-27 | Compact signatures and key recovery | Pieter 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-27 | base64-based sign/verify | Pieter Wuille | |
2011-09-27 | Incorporate pubkey in signature, check based on address | Pieter Wuille | |
Include the public key in the signature string, to allow verification based on address. | |||
2011-09-27 | Sign and verify message with bitcoin address and public key | Khalahan | |
Add padding to input (fixed string + address) before hashing | |||
2011-09-27 | Test case for base64 encode/decode | Pieter Wuille | |
2011-09-27 | Inline base64 encoder/decoder | Pieter 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-27 | Faster Base64 decoder. | JoelKatz | |
2011-09-27 | Merge pull request #25 from Matoking/master | Wladimir J. van der Laan | |
Send Coins page changes | |||
2011-09-27 | Removing the if statement entirely - not needed. | Janne Pulkkinen | |
2011-09-27 | Remove DoS penalty for SigOpCount or immature transactions | Gavin Andresen | |
2011-09-27 | Send Coins page not cleared when changing tabs. Clear all button for ↵ | Janne Pulkkinen | |
clearing the entries | |||
2011-09-26 | Updated readme file with timers. | Alex Waters | |
2011-09-26 | Merge pull request #532 from TheBlueMatt/build-updates | Gavin Andresen | |
Output build temp files in build/ instead of current directory. | |||
2011-09-26 | Output build temp files in build/ instead of current directory. | Matt Corallo | |
2011-09-26 | Update build instructions for the new, no-wxwidgets world | Gavin Andresen | |
2011-09-26 | Fix build: put back rules to build cryptopp files | Gavin Andresen | |
2011-09-26 | Remove wxWidgets | Gavin 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-26 | Merge pull request #492 from gavinandresen/fasterinitialdownload | Gavin Andresen | |
Skip verifying transaction signatures during initial block-chain download |