File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed
contrib/core-contract-tests/tests/sip-031 Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -851,9 +851,6 @@ test('fuzz: stress test claim at random intervals', () => {
851
851
852
852
// Perform claims at random intervals with random extra deposits
853
853
while ( currentMonth < 24 ) {
854
- const balance = rov ( indirectContract . getBalance ( contract . identifier ) ) ;
855
- console . log ( `Current balance: ${ balance } ` ) ;
856
-
857
854
// Random extra deposit
858
855
const extraDeposit = BigInt ( Math . floor ( Math . random ( ) * 10000000000 ) ) ;
859
856
if ( extraDeposit > 0n ) {
@@ -883,10 +880,6 @@ test('fuzz: stress test claim at random intervals', () => {
883
880
const expectedClaimable =
884
881
totalClaimable + totalExtraDeposited - totalClaimed ;
885
882
886
- console . log (
887
- `Claiming at month ${ currentMonth } (block ${ currentBlock } )\n extra deposit: ${ extraDeposit } \n expected claimable: ${ expectedClaimable } ` ,
888
- ) ;
889
-
890
883
// Claim whatever is available
891
884
const receipt = txOk ( contract . claim ( ) , accounts . deployer . address ) ;
892
885
totalClaimed += receipt . value ;
You can’t perform that action at this time.
0 commit comments