Merge pull request #7206

daf6466 Add "NODE_BLOOM" to guiutil so that peers don't get UNKNOWN[4] (Matt Corallo)
This commit is contained in:
Jonas Schnelli 2015-12-14 08:57:01 +01:00
commit b7c704abab
No known key found for this signature in database
GPG Key ID: 29D4BCB6416F53EC
1 changed files with 3 additions and 0 deletions

View File

@ -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));
}