From d58f9c333b65abf3d9eb12693115af1dc6863297 Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Mon, 19 Aug 2024 12:41:13 +0200 Subject: [PATCH] chore(p2p): lower default dht interval default Signed-off-by: Ettore Di Giacinto --- core/p2p/p2p.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/p2p/p2p.go b/core/p2p/p2p.go index c1039f58..1a45da23 100644 --- a/core/p2p/p2p.go +++ b/core/p2p/p2p.go @@ -29,7 +29,7 @@ import ( func GenerateToken() string { // Generates a new config and exit - newData := node.GenerateNewConnectionData(900) + newData := node.GenerateNewConnectionData(120) return newData.Base64() }