diff --git a/waku/node/v2/quicksim.nim b/waku/node/v2/quicksim.nim index ba185bb0a..4975696fd 100644 --- a/waku/node/v2/quicksim.nim +++ b/waku/node/v2/quicksim.nim @@ -11,11 +11,65 @@ template sourceDir: string = currentSourcePath.rsplit(DirSep, 1)[0] const sigWakuPath = &"{sourceDir}{DirSep}rpc{DirSep}wakucallsigs.nim" createRpcSigs(RpcHttpClient, sigWakuPath) -const topicAmount = 100 +const topicAmount = 10 #100 proc handler(topic: string, data: seq[byte]) {.async, gcsafe.} = debug "Hit handler", topic=topic, data=data +# Scenario xx1 - 16 full nodes +######################################### +let amount = 16 +var nodes: seq[RPCHttpClient] +for i in 0..