diff --git a/test/wallet-pagination-test.js b/test/wallet-pagination-test.js index 12d0f8095..0ff501d68 100644 --- a/test/wallet-pagination-test.js +++ b/test/wallet-pagination-test.js @@ -115,10 +115,6 @@ describe('Wallet TX Pagination', function() { assert.strictEqual(two[99].account, 'blue'); assert.strictEqual(two[99].confirmations, 4); }); - - // TODO - // - third page after new block (no shifting) - // - last page (575 txs total) }); describe('get transaction history (asc)', () => { @@ -152,10 +148,6 @@ describe('Wallet TX Pagination', function() { assert.strictEqual(two[11].confirmations, 102); assert.notStrictEqual(two[0].txid, one[11].txid); }); - - // TODO - // - third page after new block (no shifting) - // - last page }); describe('get transaction history by timestamp', () => { @@ -185,9 +177,6 @@ describe('Wallet TX Pagination', function() { assert.strictEqual(history[99].confirmations, 2); assert(a < b); }); - - // TODO - // - last arbitrary date }); describe('chain reorganizations', () => { diff --git a/test/wallet-unconfirmed-test.js b/test/wallet-unconfirmed-test.js index 996009d7e..14e8e2dea 100644 --- a/test/wallet-unconfirmed-test.js +++ b/test/wallet-unconfirmed-test.js @@ -160,10 +160,6 @@ describe('Wallet Unconfirmed TX', function() { assert.strictEqual(Number.isInteger(d), true); assert.strictEqual(a > b, true); }); - - // TODO - // - third page after new block (no shifting) - // - last page }); describe('get transaction history (asc)', () => { @@ -213,10 +209,6 @@ describe('Wallet Unconfirmed TX', function() { assert.notStrictEqual(two[0].txid, one[99].txid); }); - - // TODO - // - third page after new block (no shifting) - // - last page }); describe('get transaction history by timestamp (asc)', () => { @@ -254,9 +246,6 @@ describe('Wallet Unconfirmed TX', function() { assert.strictEqual(Number.isInteger(b), true); assert.strictEqual(a > b, true); }); - - // TODO - // - arbitrary date }); describe('chain rollback', () => {