Skip to content

Commit f1b6462

Browse files
committed
Prevent old block responses from causing a gateway disconnect
1 parent 1ee33b3 commit f1b6462

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

node/bft/src/gateway.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@ impl<N: Network> Gateway<N> {
660660
}
661661
Err(err) => {
662662
warn!("Unable to process block response from '{peer_ip}' - {err}");
663-
Err(err.into())
663+
Ok(true)
664664
}
665665
}
666666
} else {

0 commit comments

Comments
 (0)