From 135360970f461a4f1d27137b9b9219c892665038 Mon Sep 17 00:00:00 2001 From: Arash Deshmeh Date: Tue, 20 Aug 2024 10:09:34 -0400 Subject: [PATCH] fix typo when using cosmossdk --- relay.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/relay.go b/relay.go index de1dddd..d93640b 100644 --- a/relay.go +++ b/relay.go @@ -31,7 +31,7 @@ func initCosmosSDKConfig() { consNodePubKeyPrefix := app.AccountAddressPrefix + "valconspub" // Set and seal config - config := sdk.GetConfig() + config := cosmossdk.GetConfig() config.SetBech32PrefixForAccount(app.AccountAddressPrefix, accountPubKeyPrefix) config.SetBech32PrefixForValidator(validatorAddressPrefix, validatorPubKeyPrefix) config.SetBech32PrefixForConsensusNode(consNodeAddressPrefix, consNodePubKeyPrefix)