Skip to content

Commit 87eb418

Browse files
committed
chore: remove debug logging
1 parent a1bb7eb commit 87eb418

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

contrib/core-contract-tests/tests/sip-031/sip-031.test.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -851,9 +851,6 @@ test('fuzz: stress test claim at random intervals', () => {
851851

852852
// Perform claims at random intervals with random extra deposits
853853
while (currentMonth < 24) {
854-
const balance = rov(indirectContract.getBalance(contract.identifier));
855-
console.log(`Current balance: ${balance}`);
856-
857854
// Random extra deposit
858855
const extraDeposit = BigInt(Math.floor(Math.random() * 10000000000));
859856
if (extraDeposit > 0n) {
@@ -883,10 +880,6 @@ test('fuzz: stress test claim at random intervals', () => {
883880
const expectedClaimable =
884881
totalClaimable + totalExtraDeposited - totalClaimed;
885882

886-
console.log(
887-
`Claiming at month ${currentMonth} (block ${currentBlock})\n extra deposit: ${extraDeposit}\n expected claimable: ${expectedClaimable}`,
888-
);
889-
890883
// Claim whatever is available
891884
const receipt = txOk(contract.claim(), accounts.deployer.address);
892885
totalClaimed += receipt.value;

0 commit comments

Comments
 (0)