diff options
author | hozan23 <hozan23@karyontech.net> | 2024-05-23 15:43:04 +0200 |
---|---|---|
committer | hozan23 <hozan23@karyontech.net> | 2024-05-23 15:43:04 +0200 |
commit | 998568ab76cc8ba36fe47d5fca17bcc997aa391c (patch) | |
tree | eb6e1239498f8d7179eb2e3e0b74c6396bcea51b /p2p/examples | |
parent | c9785e8cc5b6a9a722ba0aff1eb33c2dbf020f2e (diff) |
p2p: wrap the buckets with mutex in RoutingTable
Diffstat (limited to 'p2p/examples')
-rw-r--r-- | p2p/examples/monitor.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/p2p/examples/monitor.rs b/p2p/examples/monitor.rs index 1629207..cda8972 100644 --- a/p2p/examples/monitor.rs +++ b/p2p/examples/monitor.rs @@ -1,6 +1,6 @@ mod shared; -use std::{sync::Arc, time::Duration}; +use std::sync::Arc; use clap::Parser; use log::error; |