Skip to content

Commit

Permalink
[fix] make the max supply unlimited
Browse files Browse the repository at this point in the history
  • Loading branch information
lightmark committed Jul 3, 2024
1 parent 7ec5b41 commit f1ea66c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aptos-move/framework/aptos-framework/sources/coin.move
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ module aptos_framework::coin {
};
primary_fungible_store::create_primary_store_enabled_fungible_asset(
&metadata_object_cref,
option::map(coin_supply<CoinType>(), |_| MAX_U128),
option::none(),
name<CoinType>(),
symbol<CoinType>(),
decimals<CoinType>(),
Expand Down

0 comments on commit f1ea66c

Please sign in to comment.