Skip to content

Commit

Permalink
add info comment
Browse files Browse the repository at this point in the history
  • Loading branch information
simonDos committed Jun 5, 2024
1 parent 2b5c007 commit 6ebaba5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/DefaultEmissionManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ contract DefaultEmissionManager is Ownable2StepUpgradeable, IDefaultEmissionMana
uint256 amountToMint = newSupply - currentSupply;
if (amountToMint == 0) return; // no minting required

// 2/5 of 2.5% is 1% going to the treasury
uint256 treasuryAmt = amountToMint * 2 / 5;
uint256 stakeManagerAmt = amountToMint - treasuryAmt;

Expand Down

0 comments on commit 6ebaba5

Please sign in to comment.