diff options
author | John Newbery <john@johnnewbery.com> | 2019-03-14 15:30:20 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2019-03-14 15:32:17 -0400 |
commit | da14d909849a42ac4b9f0f6908c2dd00d600dc2b (patch) | |
tree | 7b35df3a3475d0536c35eebcc1c55ed380395a9d /src | |
parent | 889af0eaacd9c858471a53d4125057eece6a4f3d (diff) |
[p2p] Enable BIP 61 REJECT messages by default
Diffstat (limited to 'src')
-rw-r--r-- | src/net_processing.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net_processing.h b/src/net_processing.h index 39c22d7118..4189debe4c 100644 --- a/src/net_processing.h +++ b/src/net_processing.h @@ -18,7 +18,7 @@ static const unsigned int DEFAULT_MAX_ORPHAN_TRANSACTIONS = 100; /** Default number of orphan+recently-replaced txn to keep around for block reconstruction */ static const unsigned int DEFAULT_BLOCK_RECONSTRUCTION_EXTRA_TXN = 100; /** Default for BIP61 (sending reject messages) */ -static constexpr bool DEFAULT_ENABLE_BIP61{false}; +static constexpr bool DEFAULT_ENABLE_BIP61{true}; class PeerLogicValidation final : public CValidationInterface, public NetEventsInterface { private: |