From b371b3ecda4808dbf488109314037a72eacedcd5 Mon Sep 17 00:00:00 2001 From: Matthew Zipkin Date: Thu, 5 Jul 2018 17:05:58 +0000 Subject: [PATCH] test/txmeta: fix lint --- test/txmeta-test.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/test/txmeta-test.js b/test/txmeta-test.js index 83ce4b07..8722e3c3 100644 --- a/test/txmeta-test.js +++ b/test/txmeta-test.js @@ -9,18 +9,17 @@ const TXMeta = require('../lib/primitives/txmeta'); const network = Network.get('regtest'); - describe('TXMeta', function() { it('should return JSON for txmeta', async () => { // unconfirmed at height 100 const txmeta1 = new TXMeta(); - const txJSON1 = txmeta1.getJSON(network, null, 100) + const txJSON1 = txmeta1.getJSON(network, null, 100); assert.strictEqual(txJSON1.confirmations, 0); // confirmed once at height 100 const txmeta2 = TXMeta.fromOptions( {height: 100} ); txmeta2.height = 100; - const txJSON2 = txmeta2.getJSON(network, null, 100) + const txJSON2 = txmeta2.getJSON(network, null, 100); assert.strictEqual(txJSON2.confirmations, 1); }); -}); \ No newline at end of file +});