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:
parent
14ecc79f01
commit
29c51d5086
|
@ -238,6 +238,11 @@ impl MetaAddr {
|
||||||
self.last_seen
|
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?
|
/// Is this address a directly connected client?
|
||||||
pub fn is_direct_client(&self) -> bool {
|
pub fn is_direct_client(&self) -> bool {
|
||||||
match self.last_connection_state {
|
match self.last_connection_state {
|
||||||
|
|
Loading…
Reference in New Issue