Skip to content

Commit

Permalink
BitcoinSerializer: Remove a redundant log message when handling an un…
Browse files Browse the repository at this point in the history
…known message.
  • Loading branch information
Andreas Schildbach authored and ripcurlx committed Aug 17, 2021
1 parent fe9f6a9 commit eaf7470
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,6 @@ private Message makeMessage(String command, int length, byte[] payloadBytes, byt
} else if (command.equals("sendheaders")) {
return new SendHeadersMessage(params, payloadBytes);
} else {
log.warn("No support for deserializing message with name {}", command);
return new UnknownMessage(params, command, payloadBytes);
}
}
Expand Down

0 comments on commit eaf7470

Please sign in to comment.