Update all vendor (#23)

* Upgrade all vendors

* Fix subscribeTopic signature
This commit is contained in:
Oskar Thorén 2020-05-29 15:41:13 +08:00 committed by GitHub
parent dcbd0c617a
commit 610305f27b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 13 additions and 13 deletions

2
vendor/news vendored

@ -1 +1 @@
Subproject commit 8ea2ee260207c57a4b495931508569e181bb7b93
Subproject commit 1caa232d63f4607f90d5a9eb428fbe772e010d21

@ -1 +1 @@
Subproject commit af184ae47e20672b68d20e7cacd3b726533548e1
Subproject commit 3d7619b1f559c86b2ef026f386d6d872b9331c82

2
vendor/nim-eth vendored

@ -1 +1 @@
Subproject commit 17586c05d7f047484019565d7eaf8ea9d60b2d30
Subproject commit a110f091af38e070781de28fea400303d5b3cf43

@ -1 +1 @@
Subproject commit caab5c917ffd4a4c583dad9c59d2e1012eee9baa
Subproject commit 5d7cad792ff782672cc46a84cfcae341b55e2437

2
vendor/nim-json-rpc vendored

@ -1 +1 @@
Subproject commit 5c0d0961114bcaaf3da52d5918bf0b85ef0e4ce9
Subproject commit ecf49a06329f49f1993008b0ee08e3f3e13cc422

@ -1 +1 @@
Subproject commit cb695d175fd809f6262f1ebc329e7c0b1d4505f5
Subproject commit aa51f6fed1715a91fd8b58072a1915422a133d4a

2
vendor/nim-libp2p vendored

@ -1 +1 @@
Subproject commit 9132f169278ce05fd6fe86dac65e8bec1e9d56c9
Subproject commit 7b6e1c06888a831d61d7019a07d2d59d5bd079ea

2
vendor/nim-metrics vendored

@ -1 +1 @@
Subproject commit 65c91f1a7b5bf83968d0bebab74d14ddb6e9a432
Subproject commit f91deb74228ecb14fb82575e4d0f387ad9732b8a

@ -1 +1 @@
Subproject commit 9f085c33a9dc381bcf455225ccfad893b3d0361e
Subproject commit 16e6bcd16d71eba932978ebc22908da414f52db7

2
vendor/nim-stew vendored

@ -1 +1 @@
Subproject commit 8065e36c5af31f2f3f3b0d9ea242ae4eef193a30
Subproject commit a99dafab420bcbbffee35e9bd847a9014eafaffe

@ -1 +1 @@
Subproject commit e8e1f1c2cff5aebf74dff07b1cf119134267922b
Subproject commit 34a884e1cfa8f4f542db7777085f2024b398eea5

View File

@ -66,9 +66,9 @@ method subscribe*(w: WakuSub,
method subscribeTopic*(w: WakuSub,
topic: string,
subscribe: bool,
peerId: string) {.gcsafe.} =
peerId: string) {.async, gcsafe.} =
debug "subscribeTopic", topic=topic, subscribe=subscribe, peerId=peerId
procCall FloodSub(w).subscribeTopic(topic, subscribe, peerId)
await procCall FloodSub(w).subscribeTopic(topic, subscribe, peerId)
# TODO: Fix decrement connected peers here or somewhere else
method handleDisconnect*(w: WakuSub, peer: PubSubPeer) {.async.} =