We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb8949a commit 930c085Copy full SHA for 930c085
modules/core/src/commonMain/kotlin/fr/acinq/lightning/io/Peer.kt
@@ -1156,7 +1156,7 @@ class Peer(
1156
return
1157
}
1158
val msg = cmd.msg
1159
- msg.let { if (it !is Ping && it !is Pong) logger.info { "received $it" } }
+ msg.let { if (it !is Ping && it !is Pong && it !is RecommendedFeerates) logger.info { "received $it" } }
1160
when (msg) {
1161
is UnknownMessage -> {
1162
logger.warning { "unhandled code=${msg.type}" }
0 commit comments