Skip to content

Commit

Permalink
improve fee disagreement detection
Browse files Browse the repository at this point in the history
  • Loading branch information
daywalker90 committed Oct 10, 2023
1 parent 785235e commit 58d65ff
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/channelwatch.rs
Expand Up @@ -216,6 +216,18 @@ fn check_slackers(
),
);
}
if status.to_lowercase().contains("update_fee") {
warn!(
"check_channel: Can't agree on fee with: {} status: {}",
peer_id.to_string(),
status
);
update_slackers(
peer_slackers,
peer_id,
format!("Can't agree on fee. Status: {}", status),
);
}
if status.to_lowercase().contains("will attempt reconnect") {
contained_reconnect = true;
}
Expand Down

0 comments on commit 58d65ff

Please sign in to comment.