Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-01-17 | enable GCC large address aware linker flag (Windows only) | Philip Kaufmann | |
- this flag allows bitcoin-qt.exe / bitcoind.exe (32-bit application) to handle addresses larger than 2GB (up to 3GB on x86 Windows and up to 4GB on x64 Windows) | |||
2013-01-17 | Merge pull request #1795 from TheBlueMatt/bloom | Gavin Andresen | |
Bloom filters | |||
2013-01-16 | Merge pull request #2181 from Diapolo/translations | Wladimir J. van der Laan | |
update bitcoinstrings.cpp and bitcoin_en.ts (2013-01-14) | |||
2013-01-16 | Filter mempool command | Matt Corallo | |
2013-01-16 | Add nFlags to CBloomFilter to make filter updating optional. | Matt Corallo | |
2013-01-16 | Use CPartialMerkleTree for CMerkleBlock transactions. | Matt Corallo | |
2013-01-16 | Add CPartialMerkleTree | Pieter Wuille | |
This adds a compact representation for a subset of a merkle tree's nodes. | |||
2013-01-16 | Add a nTweak to bloom filters to tweak the seed. | Matt Corallo | |
2013-01-16 | Let a node opt out of tx invs before we get a their bloom filter | Matt Corallo | |
Note that the default value for fRelayTxes is false, meaning we now no longer relay tx inv messages before receiving the remote peer's version message. | |||
2013-01-16 | Relay CMerkleBlocks when asked for MSG_FILTERED_BLOCK | Matt Corallo | |
2013-01-16 | Add test cases for CMerkleBlock and CBloomFilter. | Matt Corallo | |
2013-01-16 | Add a CMerkleBlock to store merkle branches of filtered txes. | Matt Corallo | |
2013-01-16 | Add a CBlock.GetBlockHeader | Matt Corallo | |
2013-01-16 | Automatically add any matching outputs to a filter during matching. | Matt Corallo | |
2013-01-16 | Replace RelayMessage with RelayTransaction. | Matt Corallo | |
2013-01-16 | Add a filter field in CNode, add filterload+filteradd+filterclear | Matt Corallo | |
2013-01-16 | Bump PROTOCOL_VERSION for filter messages. | Matt Corallo | |
2013-01-16 | Add a CBloomFilter class for use as a transaction filter. | Matt Corallo | |
2013-01-16 | Add MurmurHash3 implementation to hash.h/add hash.cpp. | Matt Corallo | |
2013-01-16 | Add const versions of base_uint.end()/begin(), make size() const. | Matt Corallo | |
2013-01-15 | Fix clang warnings | Gavin Andresen | |
2013-01-14 | update bitcoinstrings.cpp and bitcoin_en.ts (2013-01-14) | Philip Kaufmann | |
2013-01-14 | Merge pull request #2172 from Diapolo/init_messages | Gavin Andresen | |
make database init messages more valuable | |||
2013-01-14 | Merge pull request #2159 from petertodd/display-nlocktime-correctly | Gavin Andresen | |
Display tx nLockTime correctly when set to block # | |||
2013-01-14 | Merge pull request #2129 from gmaxwell/wallet_less_frequent_fees | Gavin Andresen | |
If the prio. will be enough after the next block don't force fees. [wallet] | |||
2013-01-14 | Merge branch 'macdeployqt_fix' of git://github.com/themighty1/bitcoin | Gavin Andresen | |
2013-01-14 | Merge pull request #2161 from sipa/noclient | Gavin Andresen | |
Remove fClient | |||
2013-01-14 | Merge pull request #2099 from gavinandresen/blkfile_upgrade | Gavin Andresen | |
Upgrading to 0.8: re-use blkNNNN.dat files. | |||
2013-01-14 | Merge pull request #2142 from gavinandresen/utilprint | Gavin Andresen | |
OutputDebugStringF code cleanup | |||
2013-01-14 | Merge branch 'devprocess' | Gavin Andresen | |
2013-01-14 | Update development process README to reflect current reality | Gavin Andresen | |
2013-01-13 | make database init messages more valuable | Philip Kaufmann | |
- it was bad, that quite some messages were just talking about a database, I think a user should know, if we are talking about wallet db or block/coin db - also adds a new init message for "Verifying block database integrity..." | |||
2013-01-13 | Merge pull request #2166 from Diapolo/Qt_signverify | Wladimir J. van der Laan | |
Bitcoin-Qt: use reference in setAddress_SM() and setAddress_VM() | |||
2013-01-11 | Merge pull request #2169 from Diapolo/small_main_h_cleanup | Jeff Garzik | |
small main.h cleanup (no code changes) | |||
2013-01-11 | small main.h cleanup (no code changes) | Philip Kaufmann | |
- removes some obsolete comments about CTransaction::FetchInputs(), a space and a few new-lines | |||
2013-01-11 | Merge pull request #2145 from sipa/checkcoins | Gregory Maxwell | |
Coin database checks | |||
2013-01-10 | Merge pull request #2115 from forrestv/getblocktemplate_allfees | Pieter Wuille | |
Provide fee data for all txs in RPC getblocktemplate response | |||
2013-01-10 | Bitcoin-Qt: use reference in setAddress_SM() and setAddress_VM() | Philip Kaufmann | |
2013-01-09 | Remove fClient | Pieter Wuille | |
Client (SPV) mode never got implemented entirely, and whatever part was already working, is likely not been tested (or even executed at all) for the past two years. This removes it entirely. If we want an SPV implementation, I think we should first get the block chain data structures to be encapsulated in a class implementing a standard interface, and then writing an alternate implementation with SPV semantics. | |||
2013-01-09 | Display tx nLockTime correctly when set to block # | Peter Todd | |
Previously when a transaction was set to lock at a specific block the calculation was reversed, returning a negative number. This broke the UI and caused it to display %n in place of the actual number. In addition the previous calculation would display "Open for 0 blocks" when the block height was such that the next block created would finalize the transaction. Inserted the word "more" and changed the calculation so that the last message would be "Open for 1 more block" to better match user expectations. | |||
2013-01-06 | Merge pull request #2153 from Diapolo/overviewpage | Wladimir J. van der Laan | |
Bitcoin-Qt: fix small stylesheet glitch in overviewpage.ui | |||
2013-01-06 | Merge pull request #2151 from Diapolo/signmessage | Wladimir J. van der Laan | |
Bitcoin-Qt: add a Signature label on sign message page | |||
2013-01-06 | Merge pull request #2147 from Diapolo/mq_name_testnet | Wladimir J. van der Laan | |
Bitcoin-Qt: give testnet a unique IPC message queue name | |||
2013-01-06 | Merge pull request #2143 from Diapolo/ThreadSafeMessageBox_caption | Wladimir J. van der Laan | |
update ThreadSafeMessageBox function to use strCaption | |||
2013-01-06 | Bitcoin-Qt: fix small stylesheet glitch in overviewpage.ui | Philip Kaufmann | |
2013-01-06 | Bitcoin-Qt: add a Signature label on sign message page | Philip Kaufmann | |
2013-01-06 | update noui_ThreadSafeMessageBox function to use strCaption | Philip Kaufmann | |
- ensure we use strCaption for printf and fprintf, as before it could happen to have an error message in the debug.log, which had no "Error" (or whatever) in front | |||
2013-01-06 | Bitcoin-Qt: give testnet a unique IPC message queue name | Philip Kaufmann | |
- this prevents an interference with the IPC message queue (which is used for URI processing) when running a testnet and mainnet instance in parallel - to check for testnet, I had to raise the ParseParameters() call in main() to the topmost position | |||
2013-01-05 | Merge pull request #2110 from Diapolo/addrbook | Wladimir J. van der Laan | |
Bitcoin-Qt: comment out unused parameter in addressbookpage | |||
2013-01-05 | Merge pull request #2148 from Diapolo/est_block_count | Wladimir J. van der Laan | |
Bitcoin-Qt: never display own block count > estimated block count |