Skip to content

Commit

Permalink
docs: fixes collections intValue reference (#21165)
Browse files Browse the repository at this point in the history
  • Loading branch information
NelsonGaldeman authored Aug 2, 2024
1 parent a26970e commit bc0731c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions collections/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
),
}
}
Expand Down Expand Up @@ -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,
),
}
}
Expand Down

0 comments on commit bc0731c

Please sign in to comment.