Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-01-23 | Native Windows LevelDB port | Pieter Wuille | |
Import native Windows LevelDB port by Hiram Chirino. Extracted from from https://github.com/chirino/leveldb.git using git diff dd0d562..aea83b7 | |||
2013-01-23 | Remove Snappy support | Pieter Wuille | |
2013-01-23 | Replace leveldb/ with vanilla 1.7.0 | Pieter Wuille | |
2013-01-23 | Merge pull request #2114 from sipa/strictstrict | Gavin Andresen | |
Make IsCanonicalScript() check the hash type more thoroughly | |||
2013-01-23 | Merge pull request #2167 from Diapolo/Qt_laa_flag | Gavin Andresen | |
enable GCC large address aware linker flag (Windows only) | |||
2013-01-23 | Merge pull request #2192 from mikehearn/notfoundmsg | Gavin Andresen | |
Add a notfound message to getdata. | |||
2013-01-23 | Merge pull request #2188 from TheBlueMatt/bloom | Gavin Andresen | |
Send transactions after a CMerkleBlock when asked for it in an inv. | |||
2013-01-21 | Merge pull request #1872 from gmaxwell/listaddrnotmine | Gregory Maxwell | |
In listaddressgroupings push down the IsMine check to run on each input. | |||
2013-01-21 | Merge pull request #2193 from Diapolo/Qt_parseBitcoinURI | Gavin Andresen | |
Bitcoin-Qt: extend parseBitcoinURI() pre-check | |||
2013-01-21 | Merge pull request #2190 from sipa/fixgenesis | Gavin Andresen | |
Bugfix + simplify special case for genesis | |||
2013-01-21 | Bitcoin-Qt: extend parseBitcoinURI() pre-check | Philip Kaufmann | |
- add check to verify if an URI is valid | |||
2013-01-20 | make bitcoinrpc.cpp UTF-8 conformant again | Philip Kaufmann | |
- just replaces a character in a comment, which I had problems with when opening the file in Qt Creator IDE | |||
2013-01-19 | Add a notfound message to getdata that is sent if any transactions that ↵ | Mike Hearn | |
aren't in the relayable set are requested. | |||
2013-01-19 | Merge pull request #2157 from Diapolo/Qt_addrlist | Wladimir J. van der Laan | |
Bitcoin-Qt: fix known addressbook bugs | |||
2013-01-19 | Merge pull request #2171 from Diapolo/init | Wladimir J. van der Laan | |
add InitMessage() to noui and use debug.log for GUI | |||
2013-01-19 | Bugfix + simplify special case for genesis | Pieter Wuille | |
2013-01-18 | Replace 520 constant with MAX_SCRIPT_ELEMENT_SIZE | Matt Corallo | |
2013-01-18 | Send transactions after a CMerkleBlock when asked for it in an inv. | Matt Corallo | |
This actually simplifies some SPV code, as they can keep track of a filtered block and its txn before accepting both in one step. The previous argument was that SPV nodes should handle the txn the same as any other free txn and then mark them as connected to a block when they get the filtered block itself. However, it now appears that SPV nodes will need to put in more effort to verify loose txn than they would to verify txn in blocks, thus making it more approriate to send the txn after the filtered block. | |||
2013-01-17 | Merge pull request #2149 from sipa/fixtxoutrpc | Gavin Andresen | |
Make output of gettxout RPC more consistent | |||
2013-01-17 | Merge pull request #2060 from sipa/parallel | Gavin Andresen | |
Parallel script verification | |||
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 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-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() |