aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-12-19OP_EVAL implementationGavin Andresen
OP_EVAL is a new opcode that evaluates an item on the stack as a script. It enables a new type of bitcoin address that needs an arbitrarily complex script to redeem.
2011-12-19Global fixture to send output to console instead of debug.logGavin Andresen
2011-12-19Support 3 new multisignature IsStandard transactionsGavin Andresen
Initial support for (a and b), (a or b), and 2-of-3 escrow transactions (where a, b, and c are keys).
2011-12-19Rework unit tests so test_bitcoin.cpp does not #include them allGavin Andresen
2011-12-19Collapse no-op ExtractAddress/ExtractAddressInnerGavin Andresen
2011-12-19Merge pull request #574 from sipa/dumpprivkeyGavin Andresen
Dumpprivkey
2011-12-19Merge pull request #699 from laanwj/about_qtGavin Andresen
Add "About Qt" menu option to show built-in Qt About dialog
2011-12-19Merge pull request #707 from gavinandresen/BIP14Gavin Andresen
Implement BIP 14 : separate protocol version from client version
2011-12-19Implement BIP 14 : separate protocol version from client versionGavin Andresen
2011-12-19Merge pull request #709 from luke-jr/newdnsseedsGavin Andresen
New DNS seeds
2011-12-17Key import and exportPieter Wuille
Introduces two new RPC calls: * dumpprivkey: retrieve the private key corresponding to an address * importprivkey: add a private key to your wallet The private key format is analoguous to the address format. It is a 51-character base58-encoded string, that includes a version number and a checksum. Includes patch by mhanne: * add optional account parameter for importprivkey, if omitted use default
2011-12-17Preparations for key import/exportPieter Wuille
2011-12-17CBitcoinSecret added (base58 encoded privkey)Pieter Wuille
2011-12-17Add GetSecret() and GetKeys() to CKeyStorePieter Wuille
2011-12-17Make CWalletTx::pwallet privatePieter Wuille
2011-12-16Add my DNS seed domainLuke Dashjr
2011-12-16Merge pull request #704 from TheBlueMatt/masterGavin Andresen
Update debian changelog to 0.5.1.
2011-12-16Merge pull request #706 from TheBlueMatt/gitianGavin Andresen
Add laanwj to gitian download scripts.
2011-12-16Move more newlines out of strings, and fix translations.Gavin Andresen
2011-12-16Merge branch 'fix-help-translations' of https://github.com/tcatm/bitcoinGavin Andresen
2011-12-16Add laanwj to gitian download scripts.Matt Corallo
2011-12-16Update debian changelog to 0.5.1.Matt Corallo
2011-12-16Bump version 0.5.99 (prep for pulling for version 0.6)Gavin Andresen
2011-12-16Add sipa's new dnsseed.Matt Corallo
2011-12-13Merge pull request #700 from TheBlueMatt/qtalertfixv0.5.1rc2v0.5.1Gavin Andresen
Fix status bar not displaying Alerts.
2011-12-13Fix status bar not displaying Alerts.Matt Corallo
2011-12-13Add "About Qt" menu option to show built-in Qt About dialogWladimir J. van der Laan
- Most Qt programs do this, and it can be useful to find out what version of Qt was built against.
2011-12-13Enable wordwrap for long message in passphrase dialogWladimir J. van der Laan
- Remove explicit resizing from constructor to prevent potential hang
2011-12-13move \\n outside _() in --helpNils Schneider
2011-12-12Merge commit '7298ebb'v0.5.1rc1Gavin Andresen
2011-12-12added translations: pt_BR zh_CNNils Schneider
2011-12-12updated translations: es es_CL nb ruNils Schneider
2011-12-12Merge pull request #687 from TheBlueMatt/gitiansslGavin Andresen
Re-enable RPCSSL in gitian builds.
2011-12-12Merge pull request #694 from luke-jr/restore_old_miniupnp_compatGavin Andresen
Restore compatibility with miniupnpc 1.5 (without breaking miniupnp 1.6)
2011-12-10Restore compatibility with miniupnpc 1.5 (without breaking miniupnp 1.6)Luke Dashjr
2011-12-09Merge pull request #693 from laanwj/min_fix_tmpshowWladimir J. van der Laan
Prevent window from being shown momentarily when using -min
2011-12-09Prevent window from being shown momentarily when using -minWladimir J. van der Laan
- In a previous patch, show() was added to all the page switcher functions. As the contructor calls showOverviewPage(), this means the window is shown in the constructor. - This change prevents this by connecting show() to the signal instead.
2011-12-07Re-enable RPCSSL in gitian builds.Matt Corallo
2011-12-05Merge pull request #679 from laanwj/cmdline_minimizeGavin Andresen
Implement -min option to start minimized
2011-12-05Merge pull request #682 from TheBlueMatt/gdicryptoGavin Andresen
Move -lgdi32 after -lcrypto (fixes #681)
2011-12-04Implement -min option to start minimizedWladimir J. van der Laan
2011-12-03Move -lgdi32 after -lcrypto (fixes #681).Matt Corallo
2011-12-02Merge pull request #654 from TheBlueMatt/dnsseed-threadGavin Andresen
Move DNS Seed lookup to a new thread.
2011-12-01Merge pull request #670 from gavinandresen/rpcauth_speedupGavin Andresen
Speed up RPC authentication (reworked pull from Joel Katz)
2011-12-01Speed up RPC authentication (reworked pull from Joel Katz)Gavin Andresen
2011-12-01Merge pull request #534 from gavinandresen/DoSorphansGavin Andresen
Denial-of-service prevention: low-difficulty blocks
2011-12-01Orphan block fill-up-memory attack preventionGavin Andresen
2011-12-01Moved checkpoints out of main, to prep for using them to help prevent DoS ↵Gavin Andresen
attacks
2011-11-30Merge pull request #666 from nobled/secstringsGavin Andresen
Implement an mlock()'d string class for storing passphrases
2011-11-30Merge pull request #667 from laanwj/homeaddriconsGavin Andresen
Make home and addressbook icon more consistent with other toolbar icons