From a94a64a865afd96c8b7debe973614b223934a6c3 Mon Sep 17 00:00:00 2001 From: marcello33 Date: Mon, 2 Sep 2024 12:38:44 +0200 Subject: [PATCH] chg: use ModuleName as StoreKey in auth --- x/auth/types/keys.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x/auth/types/keys.go b/x/auth/types/keys.go index 6f6a440ab045..10f56d6eb943 100644 --- a/x/auth/types/keys.go +++ b/x/auth/types/keys.go @@ -5,11 +5,11 @@ import ( ) const ( - // module name + // ModuleName defines the module name ModuleName = "auth" // StoreKey is string representation of the store key for auth - StoreKey = "acc" + StoreKey = ModuleName // FeeCollectorName the root string for the fee collector account address FeeCollectorName = "fee_collector"