From 0d018dc8fc966f1868817a7d3f68dd091f5c9994 Mon Sep 17 00:00:00 2001 From: Franck Royer Date: Wed, 2 Jun 2021 14:07:45 +1000 Subject: [PATCH] Update content topic as per guidelines --- _posts/2021-05-21-js-waku.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2021-05-21-js-waku.md b/_posts/2021-05-21-js-waku.md index e898b3f..4f75c1c 100644 --- a/_posts/2021-05-21-js-waku.md +++ b/_posts/2021-05-21-js-waku.md @@ -123,7 +123,7 @@ const waku = await Waku.create({}); const nodes = await getStatusFleetNodes(); await Promise.all(nodes.map((addr) => waku.dial(addr))); -const msg = WakuMessage.fromUtf8String("Here is a message!", "my-cool-app") +const msg = WakuMessage.fromUtf8String("Here is a message!", "/my-cool-app/1/my-use-case/proto") await waku.relay.send(msg); ```