diff --git a/p2p/src/conn.rs b/p2p/src/conn.rs index fc353ad50..4bfe5bc6b 100644 --- a/p2p/src/conn.rs +++ b/p2p/src/conn.rs @@ -38,7 +38,7 @@ use std::{ thread::{self, JoinHandle}, }; -const IO_TIMEOUT: Duration = Duration::from_millis(1000); +const IO_TIMEOUT: Duration = Duration::from_millis(10000); /// A trait to be implemented in order to receive messages from the /// connection. Allows providing an optional response.