aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Schnelli <dev@jonasschnelli.ch>2015-12-14 08:57:01 +0100
committerJonas Schnelli <dev@jonasschnelli.ch>2015-12-14 08:57:33 +0100
commitb7c704abab4e4f32deef0541544421f348804d86 (patch)
tree46b0a51d7a0dbd1fa4b0d81576432087322ac179
parent9ee02cf564d1ce79d2981899cb4d38c914210dc7 (diff)
parentdaf6466330d9d3e4d9034fd316cded192d2a7d67 (diff)
downloadbitcoin-b7c704abab4e4f32deef0541544421f348804d86.tar.xz
Merge pull request #7206
daf6466 Add "NODE_BLOOM" to guiutil so that peers don't get UNKNOWN[4] (Matt Corallo)
-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 6dce9370d7..43cfba63d6 100644
--- a/src/qt/guiutil.cpp
+++ b/src/qt/guiutil.cpp
@@ -898,6 +898,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));
}