Merge pull request #7180

e3bc5e0 net: Account for `sendheaders` `verack` messages (Wladimir J. van der Laan)
This commit is contained in:
Wladimir J. van der Laan 2015-12-08 10:04:21 +01:00
commit 16ccb74ef2
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
1 changed files with 2 additions and 1 deletions

View File

@ -72,7 +72,8 @@ const static std::string logAllowIncomingMsgCmds[] = {
"version", "addr", "inv", "getdata", "merkleblock",
"getblocks", "getheaders", "tx", "headers", "block",
"getaddr", "mempool", "ping", "pong", "alert", "notfound",
"filterload", "filteradd", "filterclear", "reject"};
"filterload", "filteradd", "filterclear", "reject",
"sendheaders", "verack"};
const static std::string NET_MESSAGE_COMMAND_OTHER = "*other*";