mirror of
https://github.com/serai-dex/serai.git
synced 2025-04-04 05:19:03 +00:00
Add message expiry to the Tendermint gossip
This commit is contained in:
parent
63df908d3b
commit
bd08cd3c9b
1 changed files with 7 additions and 0 deletions
|
@ -55,4 +55,11 @@ impl<T: TendermintValidator> Validator<T::Block> for TendermintGossip<T> {
|
|||
|
||||
ValidationResult::ProcessAndKeep(Self::topic(msg.number().0))
|
||||
}
|
||||
|
||||
fn message_expired<'a>(
|
||||
&'a self,
|
||||
) -> Box<dyn FnMut(<T::Block as Block>::Hash, &[u8]) -> bool + 'a> {
|
||||
let number = self.number.clone();
|
||||
Box::new(move |topic, _| topic != Self::topic(*number.read().unwrap()))
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue