| Commit message (Collapse) | Author | Age | Files | Lines |
| ... | |
| |\ \ \ \ \
| |_|_|/ /
|/| | | |
| | | | | |
216e9a4 Add a way to limit deserialized string lengths (Pieter Wuille)
|
| | | |/ /
| |/| |
| | | |
| | | | |
and use it for most strings being serialized.
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Reverting was based on a misunderstanding, it appears.
Github-Pull: #4150
|
| | | | |
| | | |
| | | |
| | | | |
This reverts commit 4fad8e6d831729efa1965fa2034e7e51d3d0a1be.
|
| |\ \ \ \
| | | | |
| | | | |
| | | | | |
4fad8e6 Reject transactions with excessive numbers of sigops (Peter Todd)
|
| | | | | | |
|
| | |/ / /
|/| | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Due to growing coinsviewcaches, the memory usage with checklevel=3
(and standard settings for dbcache) could be up to 500MiB on a
64-bit system. This is about twice the peak during reindexing,
unnecessarily extending bitcoind's memory envelope.
This commit reduces the maximum total size of the caches used during
verification to just nCoinCacheSize, which should be the limit.
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The only other method of logging remote addresses is via
-logips=1 -debug=net
which increases the logged activity by 100x or more.
Github-Pull: #4608
Amended-By: Wladimir J. van der Laan <[email protected]>
|
| | |/ /
|/| |
| | |
| | |
| | |
| | |
| | |
| | | |
Port over https://github.com/chronokings/huntercoin/pull/19 from
Huntercoin: This implements a new RPC command "getchaintips" that can be
used to find all currently active chain heads. This is similar to the
-printblocktree startup option, but it can be used without restarting
just via the RPC interface on a running daemon.
|
| |\ \ \
| | | |
| | | |
| | | | |
714a3e6 Only keep setBlockIndexValid entries that are possible improvements (Pieter Wuille)
|
| | |/ / |
|
| | | |
| | |
| | |
| | |
| | |
| | | |
* Replace -benchmark (and the related fBenchmark) with a regular debug option, -debug=bench.
* Increase coverage and granularity of individual block processing steps.
* Add cummulative times.
|
| |\ \ \
| | | |
| | | |
| | | | |
5734d4d Only remove actualy failed blocks from setBlockIndexValid (Pieter Wuille)
|
| | |/ / |
|
| | | |
| | |
| | |
| | | |
This reverts commit d640a3ceab4f4372c2a0f738c1286cfde4b41b50.
|
| | | |
| | |
| | |
| | | |
This reverts commit 7a19efe04069d9a1e251cdc94b25184f76d9d901.
|
| | | |
| | |
| | |
| | | |
This reverts commit 88dd3598d22197a22565e524cecdc08107cf76ac.
|
| | | |
| | |
| | |
| | | |
This reverts commit 0da6b3fd187da3aa810aaa584d8bd197ad4fa2b9.
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
First and foremost, this defaults to OFF.
This option lets a node consider such transactions non-standard,
meaning they will not be relayed or mined by default, but other miners
are free to mine these as usual.
|
| |\ \ \
| |_|/
|/| |
| | | |
43005cf Fix semantic typo in state.CorruptionPossible check (kazcw)
|
| | | |
| | |
| | |
| | |
| | |
| | | |
state.Invalid() is always false, check should be IsInvalid()
Broken since 942b33a
|
| |\ \ \
| |/ /
|/| |
| | | |
d4d3fbd Do not flush the cache after every block outside of IBD (Pieter Wuille)
|
| | |/ |
|
| |\ \
| | |
| | |
| | |
| | |
| | | |
4eedf4f make RandAddSeed() use OPENSSL_cleanse() (Philip Kaufmann)
6354935 move rand functions from util to new random.h/.cpp (Philip Kaufmann)
001a53d add GetRandBytes() as wrapper for RAND_bytes() (Philip Kaufmann)
|
| | |/
| |
| |
| |
| |
| | |
- add a small wrapper in util around RAND_bytes() and replace with
GetRandBytes() in the code to log errors from calling RAND_bytes()
- remove OpenSSL header rand.h where no longer needed
|
| |\ \
| | |
| | |
| | | |
dc942e6 Introduce whitelisted peers. (Pieter Wuille)
|
| | |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This adds a -whitelist option to specify subnet ranges from which peers
that connect are whitelisted. In addition, there is a -whitebind option
which works like -bind, except peers connecting to it are also
whitelisted (allowing a separate listen port for trusted connections).
Being whitelisted has two effects (for now):
* They are immune to DoS disconnection/banning.
* Transactions they broadcast (which are valid) are always relayed,
even if they were already in the mempool. This means that a node
can function as a gateway for a local network, and that rebroadcasts
from the local network will work as expected.
Whitelisting replaces the magic exemption localhost had for DoS
disconnection (local addresses are still never banned, though), which
implied hidden service connects (from a localhost Tor node) were
incorrectly immune to DoS disconnection as well. This old
behaviour is removed for that reason, but can be restored using
-whitelist=127.0.0.1 or -whitelist=::1 can be specified. -whitebind
is safer to use in case non-trusted localhost connections are expected
(like hidden services).
|
| |/ |
|
| |\
| |
| |
| | |
40f5cb8 Send rejects and apply DoS scoring for errors in direct block validation. (Pieter Wuille)
|
| | |
| |
| |
| |
| |
| |
| |
| |
| | |
75f51f2a introduced asynchronous processing for blocks, where reject messages
and DoS scoring could be applied outside of ProcessBlock, because block
validation may happen later.
However, some types of errors are still detected immediately (in particular,
CheckBlock violations), which need acting after ProcessBlock returns.
|
| |\ \
| | |
| | |
| | | |
209377a Use GetBlockTime() more (jtimon)
|
| | | | |
|
| |\ \ \
| |/ /
|/| |
| | |
| | | |
f4b00be Add CChain::GetLocator() unit test (Pieter Wuille)
3c85d2e Fix CChain::GetLocator (Pieter Wuille)
|
| | |/ |
|
| |\ \
| |/
|/|
| | |
9f4da19 Use pong receive time rather than processing time (Pieter Wuille)
|
| | | |
|
| |\ \
| | |
| | |
| | | |
2e36866 Show nodeid instead of addresses (for anonymity) unless otherwise requested. (R E Broadley)
|
| | |/ |
|
| |\ \
| | |
| | |
| | |
| | | |
0da6b3f Remove signal DoubleSpendDetected, use function (Tom Harding)
88dd359 Check signatures before respend relay (Tom Harding)
|
| | | |
| | |
| | |
| | | |
Also removes the need for forward reference to RelayableRespend.
|
| | |/
| |
| |
| |
| | |
Check that all inputs are completely valid before actually
relaying a double-spend.
|
| | | |
|
| | |
| |
| |
| |
| |
| |
| | |
Require at least 11 samples before giving fee/priority estimates.
And have wallet-created transactions go throught the fee-sanity-check
code path.
|
| |/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The wallet now uses the mempool fee estimator with a new
command-line option: -txconfirmtarget (default: 1) instead
of using hard-coded fees or priorities.
A new bitcoind that hasn't seen enough transactions to estimate
will fall back to the old hard-coded minimum priority or
transaction fee.
-paytxfee option overrides -txconfirmtarget.
Relaying and mining code isn't changed.
For Qt, the coin control dialog now uses priority estimates to
label transaction priority (instead of hard-coded constants);
unspent outputs were consistently labeled with a much higher
priority than is justified by the free transactions actually
being accepted into blocks.
I did not implement any GUI for setting -txconfirmtarget; I would
suggest getting rid of the "Pay transaction fee" GUI and replace
it with either "target number of confirmations" or maybe
a "faster confirmation <--> lower fee" slider or select box.
|
| |\
| |
| | |
Relay and alert user to double spends
|
| | | |
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Allows network wallets and other clients to see transactions that respend
a prevout already spent in an unconfirmed transaction in this node's mempool.
Knowledge of an attempted double-spend is of interest to recipients of the
first spend. In some cases, it will allow these recipients to withhold
goods or services upon being alerted of a double-spend that deprives them
of payment.
As before, respends are not added to the mempool.
Anti-Denial-of-Service-Attack provisions:
- Use a bloom filter to relay only one respend per mempool prevout
- Rate-limit respend relays to a default of 100 thousand bytes/minute
- Define tx2.IsEquivalentTo(tx1): equality when scriptSigs are not considered
- Do not relay these equivalent transactions
Remove an unused variable declaration in txmempool.cpp.
|
| | |
| |
| |
| |
| | |
This allows fast (O(log n)) access to far predecessor blocks.
Use it to speed up CChain::FindFork and CChain::GetLocator.
|
| | | |
|
| |\ \
| | |
| | |
| | | |
675bcd5 Correct comment for 15-of-15 p2sh script size (Michael Ford)
|