docs: fixes collections intValue reference (#21165)

This commit is contained in:
neeel.eth 2024-08-02 21:42:00 +01:00 committed by GitHub
parent a26970e547
commit bc0731cb49
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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,
),
}
}