Skip to content

Commit

Permalink
Fix log statement in multi-send-kinto script by changing single quote…
Browse files Browse the repository at this point in the history
…s to double quotes for consistency.
  • Loading branch information
ylv-io committed Dec 23, 2024
1 parent 7ffd9dd commit 92bc269
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/actions/multi-send-kinto.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ contract MintBatchKintoScript is MigrationHelper {
usersBalancesBefore.push(kintoToken.balanceOf(addr));
}

console2.log('totalAmount:', totalAmount);
console2.log("totalAmount:", totalAmount);

uint256 totalSupplyBefore = kintoToken.totalSupply();
// Burn tokens from RD
Expand Down

0 comments on commit 92bc269

Please sign in to comment.