mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-12 11:19:08 -05:00
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:
commit
b7c704abab
1 changed files with 3 additions and 0 deletions
|
@ -898,6 +898,9 @@ QString formatServicesStr(quint64 mask)
|
||||||
case NODE_GETUTXO:
|
case NODE_GETUTXO:
|
||||||
strList.append("GETUTXO");
|
strList.append("GETUTXO");
|
||||||
break;
|
break;
|
||||||
|
case NODE_BLOOM:
|
||||||
|
strList.append("BLOOM");
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
strList.append(QString("%1[%2]").arg("UNKNOWN").arg(check));
|
strList.append(QString("%1[%2]").arg("UNKNOWN").arg(check));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue