BitcoinSerializer: Remove a redundant log message when handling an unknown message.

This commit is contained in:
Andreas Schildbach 2021-04-17 17:53:12 +02:00
parent 54c94c9178
commit 8b74c2681c

View file

@ -256,7 +256,6 @@ public class BitcoinSerializer extends MessageSerializer {
} 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);
}
}