Skip to content

Commit

Permalink
test: add comments to auction-test transfer details
Browse files Browse the repository at this point in the history
  • Loading branch information
pinheadmz committed Feb 3, 2021
1 parent 9ff1168 commit 4b10ba6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/auction-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,9 @@ describe('Auction', function() {
assert.ok(stats.blocksUntilValidFinalize);
assert.ok(stats.hoursUntilValidFinalize);

// The height of the first block that can contain a valid FINALIZE
transferLockupEnd = stats.transferLockupEnd;
// The number of blocks (inclusive) until that height will be reached
blocksUntilValidFinalize = stats.blocksUntilValidFinalize;
});

Expand Down Expand Up @@ -459,7 +461,7 @@ describe('Auction', function() {
}

assert.strictEqual(count, blocksUntilValidFinalize);
assert.strictEqual(transferLockupEnd, entry.height);
assert.strictEqual(entry.height, transferLockupEnd);
});

it('should cleanup', async () => {
Expand Down

0 comments on commit 4b10ba6

Please sign in to comment.