- 10 Nov, 2013 2 commits
-
-
Pieter Wuille authored
-
Brandon Dahler authored
Use misc methods of avoiding unnecesary header includes. Replace int typedefs with int##_t from stdint.h. Replace PRI64[xdu] with PRI[xdu]64 from inttypes.h. Normalize QT_VERSION ifs where possible. Resolve some indirect dependencies as direct ones. Remove extern declarations from .cpp files.
-
- 04 Nov, 2013 3 commits
-
-
Wladimir J. van der Laan authored
No more specific handling of GUI in bitcoin core. Replace the last usage of fHaveGUI with a fForceServer parameter on AppInit2.
-
Patrick Strateman authored
-
Gavin Andresen authored
-
- 31 Oct, 2013 2 commits
-
-
Pieter Wuille authored
This means they are declared static, and their extern definition in main.h is removed. Also moved CBlockIndexWorkComparator to the .cpp file.
-
Pieter Wuille authored
As block index entries have a flag for marking invalid blocks, the 'best invalid work' information can be derived from there. In addition, remove the global from main.h
-
- 30 Oct, 2013 1 commit
-
-
Philip Kaufmann authored
- re-work -debug help message text - make -debug log every debugging information again (even all categories) - remove unneeded fDebug checks in front of LogPrint()/qDebug(), as that check is done in LogPrintf() when category is != NULL (true for all LogPrint() calls - remove fDebug ONLY in code which is NOT performance-critical - harmonize addrman category name - deprecate -debugnet usage, should be used via -debug=net and remove the corresponding global
-
- 28 Oct, 2013 1 commit
-
-
Pieter Wuille authored
Instead of explicitly testing for the presence of any output, and dealing with this case specially, just interpret it as an empty CCoins. The case previously caught using the HaveCoins check, is now handled by the generic outs != outsBlock test.
-
- 27 Oct, 2013 1 commit
-
-
Matt Corallo authored
-
- 26 Oct, 2013 7 commits
-
-
Pieter Wuille authored
This required some code movement (what was CWalletTx::AcceptToMemoryPool doing in main?), and adding a few explicit includes that used to be implicit through init.h.
-
Pieter Wuille authored
-
Pieter Wuille authored
-
Pieter Wuille authored
-
Pieter Wuille authored
Instead of relying on cs_main (defined in a different module) to prevent concurrent access to it.
-
Warren Togami authored
INIT_PROTO_VERSION is the initial version, after a succesful version/verack it is increased to a negotiated version. MIN_PEER_PROTO_VERSION could be a different value to disconnect from peers older than a specified version.
-
Gavin Andresen authored
Changes the response to the 'mempool' command so that if the memory pool has more than MAX_INV_SZ transactions (50,000) it will respond with multiple 'inv' messages.
-
- 20 Oct, 2013 1 commit
-
-
super3 authored
-
- 15 Oct, 2013 4 commits
-
-
Pieter Wuille authored
-
Pieter Wuille authored
SendMessages() tries to acquire a cs_main lock now, but this isn't nessecary for much of its functionality. Move those parts out of the locked section, so they can always be performed, and we hold cs_main for a shorter time.
-
Philip Kaufmann authored
-
Pieter Wuille authored
This removes a few unused CBlockLocator methods, and moves the construction and fork-finding logic to CChain (which can do these more efficiently, as it has a height-indexable chain available). It also makes CBlockLocator independent from the validation code.
-
- 11 Oct, 2013 1 commit
-
-
Pieter Wuille authored
-
- 07 Oct, 2013 1 commit
-
-
Philip Kaufmann authored
- I introduced the problem and fixed it with better readable code
-
- 04 Oct, 2013 4 commits
-
-
Gavin Andresen authored
Changes the maximum size of a free transaction that will be created from 10,000 bytes to 1,000 bytes. The idea behind this change is to make the free transaction area available to a greater number of people; with the default 27K-per-block, just three very-large very-high-priority transactions could fill the space.
-
Gavin Andresen authored
Remove the (relay/mempool) rule that all outputs of free transactions must be greater than 0.01 XBT. Dust spam is now taken care of by making dusty outputs non-standard.
-
Josh Lehan authored
New RPC "ping" command to request ping. Implemented "pong" message handler. New "pingtime" field in getpeerinfo, to provide results to user. New "pingwait" field, to show pings still in flight, to better see newly lagging peers.
-
Philip Kaufmann authored
- prevents unneeded log messages, which could make users think something bad was happening
-
- 02 Oct, 2013 1 commit
-
-
Jeff Garzik authored
-
- 25 Sep, 2013 1 commit
-
-
Philip Kaufmann authored
- moves 2 global variables from main.cpp/h to miner.cpp/h - also removes 2 unneded includes in miner.cpp, that come from miner.h already
-
- 24 Sep, 2013 1 commit
-
-
Pieter Wuille authored
-
- 18 Sep, 2013 1 commit
-
-
Gavin Andresen authored
-
- 09 Sep, 2013 2 commits
-
-
Philip Kaufmann authored
- rename URL into URI in paymentserver where correct - add some missing Qt-coding-stuff in paymentserver - change QSpinBox to QLineEdit as base for BitcoinAmountField in .ui files (as this is the result when converting the BAF back into base) - remove some c_str() and replace with QString::fromStdString() - remove several new-lines - remove unneeded spaces - indentation fixes
-
Gregory Maxwell authored
This also makes negative transaction versions non-standard. This avoids an issue triggered in block 256818 where transactions with negative version numbers were incorrectly serialized into the UTXO set. On restart nodes detect the inconsistency and refuse to start so long as a block with these transactions is inside the self-consistency check window, logging "coin database inconsistencies found". The software recommends reindexing, but reindexing does not correct the problem. This should be fixed by changing the chainstate serialization, but working around it seems harmless for now because the version is not used by any network rule currently. A patch free workaround is to start with -checklevel=2 which skips the consistency checks, but the IsStandard change is important for miners in order to protect unpatched nodes.
-
- 04 Sep, 2013 1 commit
-
-
Matt Corallo authored
-
- 28 Aug, 2013 2 commits
-
-
Gregory Maxwell authored
There have been several incidents where mainnet experimentation with raw transactions resulted in insane fees. This is hard to prevent in the raw transaction api because the inputs may not be known. Since sending doesn't work if the inputs aren't known, we can catch it there. This rejects fees > than 10000 * nMinRelayTxFee or 1 BTC with the defaults and can be overridden with a bool at the rpc.
-
Gregory Maxwell authored
We're not seeing large reorgs that would justify waiting a large amount past the rule required maturity, and the extra three hours is just a nuisance. Take one more block to at least give the 100th block time to propagate.
-
- 24 Aug, 2013 1 commit
-
-
Pieter Wuille authored
-
- 21 Aug, 2013 1 commit
-
-
Gregory Maxwell authored
This resulted in just passing all transactions to filtered wallets which worked surprisingly well, except where it didn't.
-
- 20 Aug, 2013 1 commit
-
-
Gregory Maxwell authored
This reduces a peer's ability to attack network resources by using a full bloom filter, but without reducing the usability of bloom filters. It sets a default match everything filter for peers and it generalizes a prior optimization to cover more cases.
-