Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-03-19 | Merge pull request #2215 from Diapolo/Qt_sendfrom_addrbook | Wladimir J. van der Laan | |
Bitcoin-Qt: add "send coins" to context menu in addressbook | |||
2013-03-19 | Merge pull request #2332 from Diapolo/init_messages | Wladimir J. van der Laan | |
harmonize 2 init messages and remove one | |||
2013-03-19 | Bitcoin-Qt: update Win executable file meta-data copyright | Philip Kaufmann | |
2013-03-18 | Bitcoin-Qt: add "send coins" to context menu in addressbook | Philip Kaufmann | |
- allows to directly select an address from the addressbook, chose "send coins" from the context menu, which sends you to sendcoins tab and fills in the selected address | |||
2013-03-17 | Merge pull request #2210 from Diapolo/Qt_header_cpp_cleanup | Wladimir J. van der Laan | |
Bitcoin-Qt: massive header and cpp cleanup | |||
2013-03-17 | Update unit test to match rule enforcement starts 21 March | Gavin Andresen | |
2013-03-17 | Checkpoint at first block in 11 March chain fork | Gavin Andresen | |
2013-03-17 | Before 15 May, limit created block size to 500K | Gavin Andresen | |
2013-03-17 | CheckBlock rule until 15-May for 10,000 BDB lock compatibility | Gavin Andresen | |
2013-03-17 | Bitcoin-Qt: massive header and cpp cleanup | Philip Kaufmann | |
- try to enforce the same style to all Qt related files - remove unneeded includes from the files - add missing Q_OBJECT, QT_BEGIN_NAMESPACE / QT_END_NAMESPACE - prepares for a pull-req to include Qt5 compatibility | |||
2013-03-13 | harmonize 2 init messages and remove one | Philip Kaufmann | |
- harmonize the database related init messages - as we have a thread for importing blocks, that init message is obsolete | |||
2013-03-11 | Merge pull request #2336 from petertodd/invalid-opcode-coverage | Gavin Andresen | |
Explicitly unittest the canonical prunable txout format | |||
2013-03-07 | CRPCCommand.unlocked -> CRPCCommand.threadSafe | freewil | |
unlocked could be confused with wallet encryption | |||
2013-03-07 | make vRPCCommands comment match property names | freewil | |
2013-03-01 | Test canonical prunable txout format explicitly | Peter Todd | |
2013-03-01 | Add coverage for all invalid ops | Peter Todd | |
0xba thru 0xff | |||
2013-02-24 | Short-circuit bloom checking if we will always return true. | Matt Corallo | |
This allows full nodes to use bloom filters as an optimization. | |||
2013-02-23 | Merge pull request #2186 from Diapolo/misc_stuff | Wladimir J. van der Laan | |
small changes in init, main, checkpoints.h and bitcoin-qt.pro | |||
2013-02-23 | Merge pull request #2299 from gavinandresen/localsocketuri | Wladimir J. van der Laan | |
Reimplement click-to-pay. Support OSX. | |||
2013-02-22 | Merge pull request #2221 from sipa/perfo | Gavin Andresen | |
Various performance tweaks to CCoinsView | |||
2013-02-22 | Merge pull request #2229 from sipa/prealloc | Gavin Andresen | |
Native versions for AllocateFileRange() | |||
2013-02-22 | Merge pull request #2310 from sipa/progressbar | Gavin Andresen | |
Progressbar based on time-based estimation of transactions. | |||
2013-02-22 | Merge pull request #2312 from gmaxwell/random_random | Gavin Andresen | |
ApproximateBestSubset internal RNG to prevent degenerate behavior. | |||
2013-02-22 | Merge pull request #2308 from apoelstra/safemode-privkey | Gavin Andresen | |
Enable dumpprivkey in safe mode | |||
2013-02-22 | Merge pull request #2160 from petertodd/add-adjustedtime-to-rpc-getinfo | Gavin Andresen | |
Add adjustedtime to getinfo RPC call | |||
2013-02-22 | Merge pull request #1974 from kjj2/walletnotify | Gavin Andresen | |
Add -walletnotify to call an external script on wallet transactions | |||
2013-02-20 | Shorten a startup message. It was getting truncated and looks ugly. | Mike Hearn | |
2013-02-20 | small changes in init, main, checkpoints.h and bitcoin-qt.pro | Philip Kaufmann | |
- remove an unneeded MODAL flag, as MSG_ERROR sets MODAL - re-order an if-clause in main to have bool checks before a function call - fix some log messages that used wrong function names - make a log message use a correct ellipsis - remove some unneded spaces, brackets and line-breaks - fix style for adding files in the Qt project | |||
2013-02-18 | Set CC/CXX properly for gitian buildv0.8.0 | Gavin Andresen | |
2013-02-18 | Merge pull request #2311 from gavinandresen/master | Gavin Andresen | |
Pass compiler flags to leveldb make | |||
2013-02-18 | Merge pull request #2315 from sipa/loaderror | Gavin Andresen | |
Improve block database load error reporting | |||
2013-02-18 | Internal RNG for approximateBestSubset to prevent degenerate behavior. | Gregory Maxwell | |
This fixes test_bitcoin failures on openbsd reported by dhill on IRC. On some systems rand() is a simple LCG over 2^31 and so it produces an even-odd sequence. ApproximateBestSubset was only using the least significant bit and so every run of the iterative solver would be the same for some inputs, resulting in some pretty dumb decisions. Using something other than the least significant bit would paper over the issue but who knows what other way a system's rand() might get us here. Instead we use an internal RNG with a period of something like 2^60 which is well behaved. This also makes it possible to make the selection deterministic for the tests, if we wanted to implement that. | |||
2013-02-17 | Improve block database load error reporting | Pieter Wuille | |
2013-02-16 | Merge branch 'loaderror' of git://github.com/sipa/bitcoin | Gavin Andresen | |
2013-02-16 | Improve block database load error reporting | Pieter Wuille | |
2013-02-16 | Merge pull request #2283 from Diapolo/translations | Wladimir J. van der Laan | |
translations update (bitcoinstrings.cpp + bitcoin_en.ts) | |||
2013-02-16 | Transactions-based verification progress | Pieter Wuille | |
2013-02-16 | Change progress bar from block-based to time-based | Wladimir J. van der Laan | |
This is less confusing to most people, and doesn't rely on estimates of the total number of blocks received from other nodes. | |||
2013-02-15 | Pass compiler flags down into leveldb make | Gavin Andresen | |
Fixes issue#2288. Includes cleanups from Luke's pull 2243. | |||
2013-02-14 | Enable dumpprivkey in safe mode | Andrew Poelstra | |
2013-02-12 | Reimplement click-to-pay links. Add OSX support. | Gavin Andresen | |
Switch to using Qt's QLocalServer/QLocalSocket to handle bitcoin payment links (bitcoin:... URIs) Reason for switch: the boost::interprocess mechanism seemed flaky, and doesn't mesh as well with "The Qt Way" qtipcserver.cpp/h is replaced by paymentserver.cpp/h Click-to-pay now also works on OSX, with a custom Info.plist that registers Bitcoin-Qt as a handler for bitcoin: URLs and an event listener on the main QApplication that handles QFileOpenEvents (Qt translates 'url clicked' AppleEvents into QFileOpenEvents automagically). | |||
2013-02-11 | Merge pull request #2286 from gavinandresen/fix2285 | Gavin Andresen | |
Do not use C++11 std::vector.data() | |||
2013-02-09 | Use QImage.bits instead of QImage.constBits to ease backporting | Petter Reinholdtsen | |
Image.constBits was introduced in Qt 4.7. Should be ok here to use QImage.bits which allows linking against the Qt in Squeeze. | |||
2013-02-07 | Do not use C++11 std::vector.data() | Gavin Andresen | |
std::vector.data() is a C++11 feature that makes my OSX build machine unhappy. | |||
2013-02-07 | translations update (bitcoinstrings.cpp + bitcoin_en.ts) | Philip Kaufmann | |
2013-02-06 | Merge commit 'd38c6488d067c2e88726e2ca99bc76fd67dab49b'v0.8.0rc1 | Gavin Andresen | |
2013-02-06 | Merge pull request #2279 from sipa/cvrbip30 | Gavin Andresen | |
Bugfix CValidationResult for BIP30 + add DoS | |||
2013-02-06 | Merge pull request #2264 from ↵ | Gavin Andresen | |
gmaxwell/signrawtransaction_for_regular_missing_txins Signrawtransaction shouldn't require redeemScript for non-p2sh txins. | |||
2013-02-06 | Bugfix CValidationResult for BIP30 + add DoS | Pieter Wuille | |
2013-02-05 | Do not call ResendWalletTransactions when reindexing, importing or on IBD | Rubén Darío Ponticelli | |
Calling ResendWalletTransactions when reindexing, importing or on IBD spams other nodes with our old transactions, because they become unconfirmed. |