From 469a83f679952c9358b0ef5a40a4e857c60deb38 Mon Sep 17 00:00:00 2001 From: Bryan White Date: Mon, 8 Jan 2024 20:25:32 +0100 Subject: [PATCH] fix: sealed config issue in test --- testutil/testclient/localnet.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/testutil/testclient/localnet.go b/testutil/testclient/localnet.go index 3e30318ed..96c032ed3 100644 --- a/testutil/testclient/localnet.go +++ b/testutil/testclient/localnet.go @@ -12,7 +12,6 @@ import ( "github.com/stretchr/testify/require" "github.com/pokt-network/poktroll/app" - "github.com/pokt-network/poktroll/cmd/pocketd/cmd" ) var ( @@ -28,8 +27,6 @@ var ( // init initializes the SDK configuration upon package import. func init() { - cmd.InitSDKConfig() - // If SEQUENCER_RPC_ENDPOINT environment variable is set, use it to override the default localnet endpoint. if endpoint := os.Getenv("SEQUENCER_RPC_ENDPOINT"); endpoint != "" { CometLocalTCPURL = fmt.Sprintf("tcp://%s", endpoint)