Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-09-15 | Merge pull request #4798 | Wladimir J. van der Laan | |
d920f7d Move g_signals.SetBestChain(..) below SyncWithWallets (Cozz Lovan) | |||
2014-09-15 | Merge pull request #4817 | Pieter Wuille | |
c26649f Track modified size in TxMemPoolEntry so that we can correctly compute priority. (Alex Morcos) | |||
2014-09-14 | Merge pull request #4909 | Jeff Garzik | |
2014-09-14 | cleanup new script files (no code changes) | Philip Kaufmann | |
- add missing header end comments - ensure alphabetical ordering - update copyright year and license | |||
2014-09-14 | bitcoin-util-test: Test bitcoin-tx with null scriptPubKey | Luke Dashjr | |
2014-09-14 | Bugfix: bitcoin-tx: scriptPubKey may be null, so accept outscript=<n>: | Luke Dashjr | |
2014-09-12 | Merge pull request #4876 | Pieter Wuille | |
6022b5d Make script_{valid,invalid}.json validation flags configurable (Pieter Wuille) | |||
2014-09-11 | Merge pull request #4885 | Wladimir J. van der Laan | |
aa3c697 Store fewer orphan tx by default, add -maxorphantx option (Gavin Andresen) c74332c Stricter handling of orphan transactions (Gavin Andresen) | |||
2014-09-10 | Store fewer orphan tx by default, add -maxorphantx option | Gavin Andresen | |
There is no reason to store thousands of orphan transactions; normally an orphan's parents will either be broadcast or mined reasonably quickly. This pull drops the maximum number of orphans from 10,000 down to 100, and adds a command-line option (-maxorphantx) that is just like -maxorphanblocks to override the default. | |||
2014-09-10 | Stricter handling of orphan transactions | Gavin Andresen | |
Prevent denial-of-service attacks by banning peers that send us invalid orphan transactions and only storing orphan transactions given to us by a peer while the peer is connected. | |||
2014-09-10 | Use explicit fflush() instead of setvbuf() | Adam Weiss | |
Flushing after every line when printing to console is desirable when running with systemd but setvbuf() has slightly different semantics on Windows that causes warnings. Just do an explicit fflush() after each line print to console instead. | |||
2014-09-10 | Fix crashing bug caused by orphan(s) with duplicate prevout.hash | Gavin Andresen | |
2014-09-10 | Merge pull request #4878 | Wladimir J. van der Laan | |
540ac45 Avoid returning many "inv" orphans (Jeff Garzik) d4168c8 Limit CNode::mapAskFor (Wladimir J. van der Laan) | |||
2014-09-10 | Merge pull request #4623 | Wladimir J. van der Laan | |
e84843c Broken addresses on command line no longer trigger testnet. (Ross Nicoll) | |||
2014-09-10 | Rename scriptutils.o to wallet_ismine.o | jtimon | |
2014-09-10 | Move CAffectedKeysVisitor to wallet.cpp (remove ExtractAffectedKeys) | jtimon | |
2014-09-10 | Move scriptutils.o to wallet | jtimon | |
2014-09-10 | Merge pull request #4867 | Wladimir J. van der Laan | |
a95b119 qt: Remove thousands separators after decimal point (Wladimir J. van der Laan) | |||
2014-09-10 | Merge pull request #4822 | Pieter Wuille | |
629d75f Combine CCoinsViewCache's HaveCoins and const GetCoins into AccessCoins. (Pieter Wuille) | |||
2014-09-10 | Merge pull request #4882 | Pieter Wuille | |
faadbe1 remove unneeded cast in rpcmisc.cpp (Philip Kaufmann) | |||
2014-09-09 | remove unneeded cast in rpcmisc.cpp | Philip Kaufmann | |
2014-09-09 | Merge pull request #4868 | Pieter Wuille | |
2c2cc5d Remove some unnecessary c_strs() in logging and the GUI (Philip Kaufmann) f7d0a86 netbase: Use .data() instead of .c_str() on binary string (Wladimir J. van der Laan) | |||
2014-09-09 | Remove some unnecessary c_strs() in logging and the GUI | Philip Kaufmann | |
Includes `core: remove unneeded c_str() / Qt: replace c_str() with Qt code` by P. Kaufmann. | |||
2014-09-09 | Avoid returning many "inv" orphans | Jeff Garzik | |
2014-09-09 | Limit CNode::mapAskFor | Wladimir J. van der Laan | |
Tighten resource constraints on CNode. | |||
2014-09-09 | Merge pull request #4873 | Wladimir J. van der Laan | |
89d91f6 Avoid repeated lookups in mapOrphanTransactions and mapOrphanTransactionsByPrev (Wladimir J. van der Laan) | |||
2014-09-08 | Make script_{valid,invalid}.json validation flags configurable | Pieter Wuille | |
2014-09-08 | Separate script/sign | jtimon | |
2014-09-08 | Separate CScriptCompressor | jtimon | |
2014-09-08 | Separate script/standard | jtimon | |
2014-09-08 | Separate script/interpreter | jtimon | |
2014-09-08 | Move CScript class and dependencies to script/script | jtimon | |
2014-09-08 | Rename script.h/.cpp to scriptutils.h/.cpp (plus remove duplicated includes) | jtimon | |
2014-09-08 | Avoid repeated lookups in mapOrphanTransactions and mapOrphanTransactionsByPrev | Wladimir J. van der Laan | |
2014-09-08 | Track modified size in TxMemPoolEntry so that we can correctly compute priority. | Alex Morcos | |
2014-09-08 | Merge pull request #4865 | Pieter Wuille | |
8e44f2e Clarify 'compressed nor uncompressed' error message (Peter Todd) | |||
2014-09-08 | netbase: Use .data() instead of .c_str() on binary string | Wladimir J. van der Laan | |
`.c_str()` is only guaranteed to return the data up to the first NUL character. | |||
2014-09-08 | Merge pull request #4712 | Wladimir J. van der Laan | |
80daee0 [Qt] Call checkBalanceChanged() periodically instead for every updated transaction (Cozz Lovan) | |||
2014-09-08 | Merge pull request #4697 | Wladimir J. van der Laan | |
da2ede2 [Wallet] Improve ReorderTransactions(..) (Cozz Lovan) | |||
2014-09-08 | qt: Remove thousands separators after decimal point | Wladimir J. van der Laan | |
Revert thousands separators after decimal point, as introduced in #4167. | |||
2014-09-07 | Clarify 'compressed nor uncompressed' error message | Peter Todd | |
2014-09-07 | Add testnet DNS seed of Andreas Schildbach. | Andreas Schildbach | |
It runs sipas crawler, but rather than using its custom nameserver implementation it serves a generated zonefile via bind9. The zone always contains 25 IPv4 and 25 IPv6 peers. FWIW, the zone is secured using DNSSEC. | |||
2014-09-06 | Merge pull request #4851 | Pieter Wuille | |
41ef558 univalue: make spaceStr thread-safe (Wladimir J. van der Laan) | |||
2014-09-06 | Merge pull request #4839 | Wladimir J. van der Laan | |
346193b Cleanup messy error messages (R E Broadley) | |||
2014-09-06 | Cleanup messy error messages | R E Broadley | |
2014-09-05 | Merge pull request #4849 | Pieter Wuille | |
a264e44 remove dup include of foreach.hpp in script.cpp (Philip Kaufmann) | |||
2014-09-05 | univalue: make spaceStr thread-safe | Wladimir J. van der Laan | |
Simply add spaces to the existing string instead of using a temporary. Fixes #4756. | |||
2014-09-05 | Improve readability of CAddrInfo::IsTerrible | Teran McKinney | |
- Replaced 86400 with 24*60*60 - Remove references to specific timespans in comments Github-Pull: #4724 | |||
2014-09-05 | [Qt] copyright, style and indentation cleanup of Qt tests | Philip Kaufmann | |
2014-09-05 | remove dup include of foreach.hpp in script.cpp | Philip Kaufmann | |