mirror of https://github.com/status-im/nim-eth.git
cleaner solution for sharing the queue
This commit is contained in:
parent
f02f358bc3
commit
bc2b76f09a
|
@ -100,11 +100,8 @@ proc run(peer: Peer) {.gcsafe, async.}
|
||||||
proc run(node: EthereumNode, network: WakuNetwork) {.gcsafe, async.}
|
proc run(node: EthereumNode, network: WakuNetwork) {.gcsafe, async.}
|
||||||
|
|
||||||
proc initProtocolState*(network: WakuNetwork, node: EthereumNode) {.gcsafe.} =
|
proc initProtocolState*(network: WakuNetwork, node: EthereumNode) {.gcsafe.} =
|
||||||
if node.protocolState(Whisper).isNil:
|
new(network.queue)
|
||||||
new(network.queue)
|
network.queue[] = initQueue(defaultQueueCapacity)
|
||||||
network.queue[] = initQueue(defaultQueueCapacity)
|
|
||||||
else:
|
|
||||||
network.queue = node.protocolState(Whisper).queue
|
|
||||||
network.filters = initTable[string, Filter]()
|
network.filters = initTable[string, Filter]()
|
||||||
network.config.bloom = fullBloom()
|
network.config.bloom = fullBloom()
|
||||||
network.config.powRequirement = defaultMinPow
|
network.config.powRequirement = defaultMinPow
|
||||||
|
@ -466,3 +463,6 @@ proc resetMessageQueue*(node: EthereumNode) =
|
||||||
##
|
##
|
||||||
## NOTE: Not something that should be run in normal circumstances.
|
## NOTE: Not something that should be run in normal circumstances.
|
||||||
node.protocolState(Waku).queue[] = initQueue(defaultQueueCapacity)
|
node.protocolState(Waku).queue[] = initQueue(defaultQueueCapacity)
|
||||||
|
|
||||||
|
proc shareMessageQueue*(node: EthereumNode) =
|
||||||
|
node.protocolState(Waku).queue = node.protocolState(Whisper).queue
|
||||||
|
|
|
@ -28,6 +28,8 @@ suite "Waku - Whisper bridge tests":
|
||||||
nodeWakuWhisper.startListening()
|
nodeWakuWhisper.startListening()
|
||||||
let bridgeNode = newNode(initENode(nodeWakuWhisper.keys.pubKey,
|
let bridgeNode = newNode(initENode(nodeWakuWhisper.keys.pubKey,
|
||||||
nodeWakuWhisper.address))
|
nodeWakuWhisper.address))
|
||||||
|
nodeWakuWhisper.shareMessageQueue()
|
||||||
|
|
||||||
waitFor nodeWhisper.peerPool.connectToNode(bridgeNode)
|
waitFor nodeWhisper.peerPool.connectToNode(bridgeNode)
|
||||||
waitFor nodeWaku.peerPool.connectToNode(bridgeNode)
|
waitFor nodeWaku.peerPool.connectToNode(bridgeNode)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue