Add message expiry to the Tendermint gossip

This commit is contained in:
Luke Parker 2022-11-02 23:46:21 -04:00
parent 63df908d3b
commit bd08cd3c9b
No known key found for this signature in database
GPG key ID: F9F1386DB1E119B6

View file

@ -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()))
}
}