mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-10 10:52:31 -05:00
p2p: Disable BIP 61 by default
This commit is contained in:
parent
fac3e22b18
commit
fa14b54a87
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ static const unsigned int DEFAULT_MAX_ORPHAN_TRANSACTIONS = 100;
|
||||||
/** Default number of orphan+recently-replaced txn to keep around for block reconstruction */
|
/** Default number of orphan+recently-replaced txn to keep around for block reconstruction */
|
||||||
static const unsigned int DEFAULT_BLOCK_RECONSTRUCTION_EXTRA_TXN = 100;
|
static const unsigned int DEFAULT_BLOCK_RECONSTRUCTION_EXTRA_TXN = 100;
|
||||||
/** Default for BIP61 (sending reject messages) */
|
/** Default for BIP61 (sending reject messages) */
|
||||||
static constexpr bool DEFAULT_ENABLE_BIP61 = true;
|
static constexpr bool DEFAULT_ENABLE_BIP61{false};
|
||||||
|
|
||||||
class PeerLogicValidation final : public CValidationInterface, public NetEventsInterface {
|
class PeerLogicValidation final : public CValidationInterface, public NetEventsInterface {
|
||||||
private:
|
private:
|
||||||
|
|
Loading…
Add table
Reference in a new issue