Skip to content

Commit

Permalink
fix left debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
crystalin committed Nov 28, 2024
1 parent d81e468 commit 6fe0bb7
Showing 1 changed file with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,6 @@ describeSuite({
const calcTreasuryIncrease = (feeWithTip: bigint, tip?: bigint): bigint => {
const issuanceDecrease = calcIssuanceDecrease(feeWithTip, tip);
const treasuryIncrease = feeWithTip - issuanceDecrease;
console.log("issuanceDecrease", issuanceDecrease.toString());
console.log("treasuryIncrease", treasuryIncrease.toString());
return treasuryIncrease;
};
const calcIssuanceDecrease = (feeWithTip: bigint, tip?: bigint): bigint => {
Expand All @@ -108,16 +106,6 @@ describeSuite({
t.proportion.value()
);

console.log("burn percentage", burnPercentage);
console.log("treasury percentage", treasuryPercentage);
console.log("feeWithTipBN", feeWithTipBN.toString());
console.log("tipBN", tipBN.toString());
console.log("feeWithoutTipBN", feeWithoutTipBN.toString());
console.log("burnFeePart", burnFeePart.toString());
console.log("treasuryFeePart", _treasuryFeePart.toString());
console.log("burnTipPart", burnTipPart.toString());
console.log("treasuryTipPart", _treasuryTipPart.toString());

return BigInt(burnFeePart.add(burnTipPart).toString());
};

Expand Down

0 comments on commit 6fe0bb7

Please sign in to comment.