aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPatrick Lodder <[email protected]>2015-10-17 11:17:16 +0200
committerPatrick Lodder <[email protected]>2015-10-17 11:17:16 +0200
commitd253997022c5f42d3b25b12eaaebebd49442bfbb (patch)
tree345d11cba20ac86527545d895211a8ea95b67c65 /src
parentMerge pull request #1297 from patricklodder/1.10-aux-rpc-target (diff)
downloaddiscoin-d253997022c5f42d3b25b12eaaebebd49442bfbb.tar.xz
discoin-d253997022c5f42d3b25b12eaaebebd49442bfbb.zip
[Qt] Add textual descriptor for NODE_BLOOM service flag
Displays NODE_BLOOM service as "BLOOM" instead of "UNKNOWN[2]" in qt->debug->peers
Diffstat (limited to 'src')
-rw-r--r--src/qt/guiutil.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp
index 4a1f728e1..227f8993c 100644
--- a/src/qt/guiutil.cpp
+++ b/src/qt/guiutil.cpp
@@ -883,6 +883,9 @@ QString formatServicesStr(quint64 mask)
case NODE_GETUTXO:
strList.append("GETUTXO");
break;
+ case NODE_BLOOM:
+ strList.append("BLOOM");
+ break;
default:
strList.append(QString("%1[%2]").arg("UNKNOWN").arg(check));
}