Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into feat/flow-limits
Browse files Browse the repository at this point in the history
  • Loading branch information
Foivos committed Jul 31, 2024
2 parents 30ee624 + 69a4773 commit 66cbc69
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion move/its/sources/its.move
Original file line number Diff line number Diff line change
Expand Up @@ -182,9 +182,10 @@ module its::its {
public(package) fun add_registered_coin<T>(
self: &mut ITS,
token_id: TokenId,
coin_management: CoinManagement<T>,
mut coin_management: CoinManagement<T>,
coin_info: CoinInfo<T>,
) {
coin_management.set_scaling(coin_info.scaling());
self.registered_coins.add(token_id, CoinData<T> {
coin_management,
coin_info,
Expand Down

0 comments on commit 66cbc69

Please sign in to comment.