net: Account for `sendheaders` `verack` messages

Looks like these were forgotten in #6589.
This commit is contained in:
Wladimir J. van der Laan 2015-12-07 15:15:12 +01:00
parent dc0305d15a
commit e3bc5e0e92
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*";