From a9a533919ed751b351bfccabe63ad03e8301e310 Mon Sep 17 00:00:00 2001 From: stubbsta Date: Thu, 10 Apr 2025 15:22:49 +0200 Subject: [PATCH] Enable timestamp for rest-traffic --- tools/rest-traffic/traffic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/rest-traffic/traffic.py b/tools/rest-traffic/traffic.py index 775f901..9c8be15 100644 --- a/tools/rest-traffic/traffic.py +++ b/tools/rest-traffic/traffic.py @@ -16,7 +16,7 @@ def send_waku_msg(node_address, kbytes, pubsub_topic, content_topic): "payload": base64_payload, "contentTopic": content_topic, "version": 1, # You can adjust the version as needed - #"timestamp": int(time.time()) + "timestamp": int(time.time()) } encoded_pubsub_topic = urllib.parse.quote(pubsub_topic, safe='')