diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-07-12 14:15:33 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-07-12 14:14:54 -0400 |
commit | fa0d0ff6e1bee60fde63724ae28a51aac5a94d4a (patch) | |
tree | 231c14bffd6d6ec85b937c1779adce4d83c9d1d5 /src/qt/guiutil.cpp | |
parent | 3453cf26dbafabeccd6453d8a4703cdec35da805 (diff) |
Remove unused bits from the service flags enum
Diffstat (limited to 'src/qt/guiutil.cpp')
-rw-r--r-- | src/qt/guiutil.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index 70e52c9f1d..2367663522 100644 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2011-2018 The Bitcoin Core developers +// Copyright (c) 2011-2019 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -11,10 +11,10 @@ #include <base58.h> #include <chainparams.h> -#include <primitives/transaction.h> -#include <key_io.h> #include <interfaces/node.h> +#include <key_io.h> #include <policy/policy.h> +#include <primitives/transaction.h> #include <protocol.h> #include <script/script.h> #include <script/standard.h> @@ -841,9 +841,6 @@ QString formatServicesStr(quint64 mask) case NODE_WITNESS: strList.append("WITNESS"); break; - case NODE_XTHIN: - strList.append("XTHIN"); - break; default: strList.append(QString("%1[%2]").arg("UNKNOWN").arg(check)); } |