You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/net.h
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
// Copyright (c) 2009-2010 Satoshi Nakamoto
2
-
// Copyright (c) 2009-2014 The Bitcoin developers
2
+
// Copyright (c) 2009-2015 The Bitcoin developers
3
3
// Copyright (c) 2015-2020 The PIVX developers
4
4
// Distributed under the MIT/X11 software license, see the accompanying
5
5
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
// NODE_NETWORK means that the node is capable of serving the block chain. It is currently
290
+
// set by all Bitcoin Core nodes, and is unset by SPV clients or other peers that just want
291
+
// network services but don't provide them.
287
292
NODE_NETWORK = (1 << 0),
288
293
289
294
// NODE_BLOOM means the node is capable and willing to handle bloom-filtered connections.
290
295
// Bitcoin Core nodes used to support this by default, without advertising this bit,
291
296
// but no longer do as of protocol version 70011 (= NO_BLOOM_VERSION)
292
297
NODE_BLOOM = (1 << 2),
293
298
294
-
// NODE_BLOOM_WITHOUT_MN means the node has the same features as NODE_BLOOM with the only difference
295
-
// that the node doens't want to receive master nodes messages. (the 1<<3 was not picked as constant because on bitcoin 0.14 is witness and we want that update here )
296
-
299
+
// NODE_BLOOM_WITHOUT_MN means the node has the same features as NODE_BLOOM with the only difference
300
+
// that the node doesn't want to receive master nodes messages. (the 1<<3 was not picked as constant because on bitcoin 0.14 is witness and we want that update here )
297
301
NODE_BLOOM_WITHOUT_MN = (1 << 4),
298
302
299
303
// Bits 24-31 are reserved for temporary experiments. Just pick a bit that
@@ -310,7 +314,7 @@ class CAddress : public CService
0 commit comments