From dd69f18cc349122165e47387a56ff5b320603901 Mon Sep 17 00:00:00 2001 From: Buck Date: Sun, 5 Nov 2017 14:48:37 -0800 Subject: [PATCH] fixed lint errors --- test/outpoint-test.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/test/outpoint-test.js b/test/outpoint-test.js index 5d9daa46..46c71575 100644 --- a/test/outpoint-test.js +++ b/test/outpoint-test.js @@ -10,14 +10,11 @@ const TX = require('../lib/primitives/tx'); const OUTPOINT_SIZE = 36; describe('Outpoint', () => { - let raw1, raw2, tx1, tx2, out1, out2; + let raw1, tx1, out1; beforeEach(() => { tx1 = common.readTX('tx1').getRaw(); - tx2 = common.readTX('tx3').getRaw(); raw1 = tx1.slice(5, 5+OUTPOINT_SIZE); - raw2 = tx2.slice(5, 5+OUTPOINT_SIZE); out1 = Outpoint.fromRaw(raw1); - out2 = Outpoint.fromRaw(raw2); }); it('should clone the outpoint correctly', () => {