From 52966ee7127c5551cab0137b5854a144f0260e19 Mon Sep 17 00:00:00 2001 From: Adam Bozanich Date: Wed, 4 Apr 2018 11:29:31 -0700 Subject: [PATCH] fix peer connection: remove authentication. fixes #171 --- cmd/akashd/context.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/akashd/context.go b/cmd/akashd/context.go index ed26bc9b5b..3404142c03 100644 --- a/cmd/akashd/context.go +++ b/cmd/akashd/context.go @@ -103,6 +103,7 @@ func (ctx *context) TMConfig() (*tmconfig.Config, error) { } cfg := tmconfig.DefaultConfig() + cfg.P2P.AuthEnc = false if err := viper.Unmarshal(cfg); err != nil { return nil, err