From bc0731cb49e95b4168946244f634910ea5c1493b Mon Sep 17 00:00:00 2001 From: "neeel.eth" Date: Fri, 2 Aug 2024 21:42:00 +0100 Subject: [PATCH] docs: fixes collections intValue reference (#21165) --- collections/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collections/README.md b/collections/README.md index 09c6870ba2..298f684e66 100644 --- a/collections/README.md +++ b/collections/README.md @@ -677,7 +677,7 @@ func NewKeeper(storeKey *storetypes.KVStoreKey) Keeper { Balances: collections.NewMap( sb, BalancesPrefix, "balances", collections.PairKeyCodec(sdk.AccAddressKey, collections.StringKey), - math.IntValue, + sdk.IntValue, ), } } @@ -720,7 +720,7 @@ func NewKeeper(storeKey *storetypes.KVStoreKey) Keeper { Balances: collections.NewMap( sb, BalancesPrefix, "balances", collections.PairKeyCodec(sdk.AccAddressKey, collections.StringKey), - math.IntValue, + sdk.IntValue, ), } }