Implement `MetaAddr::set_last_seen` setter method

Will be used when limiting the reported last seen times for recived
gossiped addresses.
This commit is contained in:
Janito Vaqueiro Ferreira Filho 2021-05-31 13:51:51 +00:00
parent 14ecc79f01
commit 29c51d5086
1 changed files with 5 additions and 0 deletions

View File

@ -238,6 +238,11 @@ impl MetaAddr {
self.last_seen
}
/// Set the last time we interacted with this peer.
pub(crate) fn set_last_seen(&mut self, last_seen: DateTime32) {
self.last_seen = last_seen;
}
/// Is this address a directly connected client?
pub fn is_direct_client(&self) -> bool {
match self.last_connection_state {