From f1820da46a9529b6758ccf953bde3068be31e988 Mon Sep 17 00:00:00 2001 From: Acha Bill <57879913+acha-bill@users.noreply.github.com> Date: Thu, 9 Jul 2020 15:20:47 +0100 Subject: [PATCH] increase max gossip packet size (#622) --- packages/gossip/manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/gossip/manager.go b/packages/gossip/manager.go index e31c6f78..8ee8f0eb 100644 --- a/packages/gossip/manager.go +++ b/packages/gossip/manager.go @@ -17,7 +17,7 @@ import ( ) const ( - maxPacketSize = 2048 + maxPacketSize = 64 * 1024 ) // LoadMessageFunc defines a function that returns the message for the given id. -- GitLab