From 3619ae974b3689dc41498e5f2124d3c2a6af9074 Mon Sep 17 00:00:00 2001 From: Hans Moog <hm@mkjc.net> Date: Tue, 16 Jul 2019 01:48:55 +0200 Subject: [PATCH] Refactor: disabled gossip for performance test --- main.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/main.go b/main.go index d594a410..d2e0f90a 100644 --- a/main.go +++ b/main.go @@ -6,7 +6,6 @@ import ( "github.com/iotaledger/goshimmer/plugins/autopeering" "github.com/iotaledger/goshimmer/plugins/cli" "github.com/iotaledger/goshimmer/plugins/gossip" - gossip_on_solidification "github.com/iotaledger/goshimmer/plugins/gossip-on-solidification" "github.com/iotaledger/goshimmer/plugins/gracefulshutdown" "github.com/iotaledger/goshimmer/plugins/metrics" "github.com/iotaledger/goshimmer/plugins/statusscreen" @@ -24,7 +23,7 @@ func main() { cli.PLUGIN, autopeering.PLUGIN, gossip.PLUGIN, - gossip_on_solidification.PLUGIN, + //gossip_on_solidification.PLUGIN, tangle.PLUGIN, //bundleprocessor.PLUGIN, analysis.PLUGIN, -- GitLab