Skip to content

Commit

Permalink
Refactor burn token operation in TransferDclmScript by consolidating …
Browse files Browse the repository at this point in the history
…parameters into a single line for
  • Loading branch information
ylv-io committed Jan 31, 2025
1 parent a13647a commit 424b3da
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions script/migrations/154-discord-tickets.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,7 @@ contract TransferDclmScript is MigrationHelper {
// Burn tokens from RD
_handleOps(
abi.encodeWithSelector(
BridgedToken.burn.selector,
_getChainDeployment("RewardsDistributor"),
amount_1 + amount_2
BridgedToken.burn.selector, _getChainDeployment("RewardsDistributor"), amount_1 + amount_2
),
kintoToken
);
Expand Down

0 comments on commit 424b3da

Please sign in to comment.