Skip to content

Commit

Permalink
Asserts current locking cap is the same as the recently set locking cap.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-then committed Sep 9, 2024
1 parent 550a6bd commit 2e5b55a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/00_00_3-vote_for_locking_cap_to_21m.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ describe('Vote for locking cap to the max 21 million btc', function() {
currentLockingCapValueInSatoshis = Number(await bridge.methods.getLockingCap().call());

// Ensuring that the locking cap is being increased on every iteration.
expect(currentLockingCapValueInSatoshis).to.be.greaterThanOrEqual(nextIncrement, 'Locking cap should be greater or equal to next increment');
expect(currentLockingCapValueInSatoshis).to.be.equal(nextIncrement, 'The new locking cap value should be equal to the set value');

}

Expand Down

0 comments on commit 2e5b55a

Please sign in to comment.