chore: bump nim-libp2p, nim-toml-serialization, nim-unicodedb, nim-unittest2, nim-websock, nim-zlib, & nimbus-build-system (#2065)

This commit is contained in:
Ivan Folgueira Bande 2023-09-22 12:54:23 +02:00 committed by GitHub
parent 1c4533a27a
commit dc25057a26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 9 additions and 9 deletions

2
vendor/nim-libp2p vendored

@ -1 +1 @@
Subproject commit 41649f099979e0320a46b013744e5c3d2b6eb9c7
Subproject commit b2eac7ecbdb695b0b7033f2069b03a63d28aee2b

@ -1 +1 @@
Subproject commit b189c104f7eeb2c8c2cdc9d103415dc7a6a36037
Subproject commit 43c546c365af4d291c33b7d94b5b730300165aaf

@ -1 +1 @@
Subproject commit c70f8bc8c7373265670e0575bc5eda36fe3761b0
Subproject commit b055310c08db8f879057b4fec15c8301ee93bb2a

@ -1 +1 @@
Subproject commit 883c7a50ad3b82158e64d074c5578fe33ab3c452
Subproject commit 2300fa9924a76e6c96bc4ea79d043e3a0f27120c

2
vendor/nim-websock vendored

@ -1 +1 @@
Subproject commit 2c3ae3137f3c9cb48134285bd4a47186fa51f0e8
Subproject commit f8ed9b40a5ff27ad02a3c237c4905b0924e3f982

2
vendor/nim-zlib vendored

@ -1 +1 @@
Subproject commit 826e2fc013f55b4478802d4f2e39f187c50d520a
Subproject commit a2f44bb7f65571a894227ff6fde9298a104e03a5

@ -1 +1 @@
Subproject commit 47052a3fcc5553c03e67332895b6b68faded7181
Subproject commit 81ce5fc7521e400ceababde59b4a90fe7da8919d

View File

@ -114,14 +114,14 @@ proc getAutonatService*(rng: ref HmacDrbgContext): AutonatService =
let autonatService = AutonatService.new(
autonatClient = AutonatClient.new(),
rng = rng,
scheduleInterval = some(chronos.seconds(120)),
scheduleInterval = Opt.some(chronos.seconds(120)),
askNewConnectedPeers = false,
numPeersToAsk = 3,
maxQueueSize = 3,
minConfidence = 0.7)
proc statusAndConfidenceHandler(networkReachability: NetworkReachability,
confidence: Option[float]):
confidence: Opt[float]):
Future[void] {.gcsafe, async.} =
if confidence.isSome():
info "Peer reachability status", networkReachability=networkReachability, confidence=confidence.get()