File tree Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Original file line number Diff line number Diff line change 1
1
// Copyright (c) 2009-2010 Satoshi Nakamoto
2
- // Copyright (c) 2009-2018 The Bitcoin Core developers
2
+ // Copyright (c) 2009-2019 The Bitcoin Core developers
3
3
// Distributed under the MIT software license, see the accompanying
4
4
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
5
@@ -261,9 +261,6 @@ enum ServiceFlags : uint64_t {
261
261
// NODE_WITNESS indicates that a node can be asked for blocks and transactions including
262
262
// witness data.
263
263
NODE_WITNESS = (1 << 3 ),
264
- // NODE_XTHIN means the node supports Xtreme Thinblocks
265
- // If this is turned off then the node will not service nor make xthin requests
266
- NODE_XTHIN = (1 << 4 ),
267
264
// NODE_NETWORK_LIMITED means the same as NODE_NETWORK with the limitation of only
268
265
// serving the last 288 (2 day) blocks
269
266
// See BIP159 for details on how this is implemented.
Original file line number Diff line number Diff line change 1
- // Copyright (c) 2011-2018 The Bitcoin Core developers
1
+ // Copyright (c) 2011-2019 The Bitcoin Core developers
2
2
// Distributed under the MIT software license, see the accompanying
3
3
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
4
11
11
12
12
#include < base58.h>
13
13
#include < chainparams.h>
14
- #include < primitives/transaction.h>
15
- #include < key_io.h>
16
14
#include < interfaces/node.h>
15
+ #include < key_io.h>
17
16
#include < policy/policy.h>
17
+ #include < primitives/transaction.h>
18
18
#include < protocol.h>
19
19
#include < script/script.h>
20
20
#include < script/standard.h>
@@ -841,9 +841,6 @@ QString formatServicesStr(quint64 mask)
841
841
case NODE_WITNESS:
842
842
strList.append (" WITNESS" );
843
843
break ;
844
- case NODE_XTHIN:
845
- strList.append (" XTHIN" );
846
- break ;
847
844
default :
848
845
strList.append (QString (" %1[%2]" ).arg (" UNKNOWN" ).arg (check));
849
846
}
You can’t perform that action at this time.
0 commit comments