Reduce p2pclient timeout to 10 seconds (#5109)

This commit is contained in:
Chris Stewart 2023-06-17 08:00:29 -05:00 committed by GitHub
parent 2fe80bd52b
commit e0c9500770
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -96,7 +96,7 @@ case class P2PClientActor(
*/
private val network: NetworkParameters = nodeAppConfig.network
private val timeout = 60.seconds
private val timeout = 10.seconds
/** The manager is an actor that handles the underlying low level I/O resources (selectors, channels)
* and instantiates workers for specific tasks, such as listening to incoming connections.