From 82cde171ff14243021927c35d1fc0cdcbbb1fe86 Mon Sep 17 00:00:00 2001 From: Silas Davis <silas@monax.io> Date: Sun, 15 Apr 2018 16:26:42 -0400 Subject: [PATCH] Disable authenticated peer connections to preserve pre-Tendermint-0.16.0 behaviour in private validator pool. Signed-off-by: Silas Davis <silas@monax.io> --- consensus/tendermint/config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/consensus/tendermint/config.go b/consensus/tendermint/config.go index 40491dcb..f1566a89 100644 --- a/consensus/tendermint/config.go +++ b/consensus/tendermint/config.go @@ -33,6 +33,7 @@ func (btc *BurrowTendermintConfig) TendermintConfig() *tm_config.Config { conf.P2P.RootDir = btc.TendermintRoot conf.P2P.Seeds = btc.Seeds conf.P2P.ListenAddress = btc.ListenAddress + conf.P2P.AuthEnc = false conf.Moniker = btc.Moniker } // Disable Tendermint RPC -- GitLab