lint: fix some linting errors.

This commit is contained in:
Christopher Jeffrey 2017-08-09 15:32:46 -07:00
parent 15adc17dea
commit 853ef18ad9
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD
4 changed files with 7 additions and 9 deletions

View File

@ -786,7 +786,7 @@ Config.prototype.parseConfig = function parseConfig(text) {
let key = line.substring(0, index).trim(); let key = line.substring(0, index).trim();
key = key.replace(/\-/g, '') key = key.replace(/\-/g, '');
if (!isLowerKey(key)) if (!isLowerKey(key))
throw new Error(`Invalid option on line ${num}: ${key}.`); throw new Error(`Invalid option on line ${num}: ${key}.`);

View File

@ -1,10 +1,8 @@
'use strict'; 'use strict';
const heapdump = require('heapdump'); const heapdump = require('heapdump');
const fs = require('../lib/utils/fs');
const MempoolEntry = require('../lib/mempool/mempoolentry'); const MempoolEntry = require('../lib/mempool/mempoolentry');
const Coins = require('../lib/coins/coins'); const Coins = require('../lib/coins/coins');
const TX = require('../lib/primitives/tx');
const common = require('../test/util/common'); const common = require('../test/util/common');
const SNAPSHOT = `${__dirname}/../dump.heapsnapshot`; const SNAPSHOT = `${__dirname}/../dump.heapsnapshot`;

View File

@ -450,7 +450,8 @@ describe('Chain', function() {
job.addTX(spend.toTX(), spend.view); job.addTX(spend.toTX(), spend.view);
job.refresh(); job.refresh();
assert.strictEqual(await mineBlock(job), 'mandatory-script-verify-flag-failed'); assert.strictEqual(await mineBlock(job),
'mandatory-script-verify-flag-failed');
}); });
it('should mine a block', async () => { it('should mine a block', async () => {
@ -570,7 +571,8 @@ describe('Chain', function() {
block.refresh(true); block.refresh(true);
block.merkleRoot = block.createMerkleRoot('hex'); block.merkleRoot = block.createMerkleRoot('hex');
assert.strictEqual(await addBlock(block, flags), 'bad-witness-merkle-match'); assert.strictEqual(await addBlock(block, flags),
'bad-witness-merkle-match');
}); });
it('should fail to connect unexpected witness', async () => { it('should fail to connect unexpected witness', async () => {

View File

@ -52,7 +52,7 @@ function nextBlock() {
return { return {
hash: hash.toString('hex'), hash: hash.toString('hex'),
height: height, height: height,
prevBlock: prevHead.toString('hex'), prevBlock: prevHash.toString('hex'),
time: time, time: time,
merkleRoot: encoding.NULL_HASH, merkleRoot: encoding.NULL_HASH,
nonce: 0, nonce: 0,
@ -407,7 +407,7 @@ describe('Wallet', function() {
const balance = await alice.getBalance(); const balance = await alice.getBalance();
assert.strictEqual(balance.unconfirmed, 11000); assert.strictEqual(balance.unconfirmed, 11000);
let txs = await alice.getHistory(); const txs = await alice.getHistory();
assert(txs.some((wtx) => { assert(txs.some((wtx) => {
return wtx.hash === f1.hash('hex'); return wtx.hash === f1.hash('hex');
})); }));
@ -729,8 +729,6 @@ describe('Wallet', function() {
const tx = new MTX(); const tx = new MTX();
tx.addOutput(carol.getAddress(), 5460); tx.addOutput(carol.getAddress(), 5460);
const cost = tx.getOutputValue();
const coins1 = await alice.getCoins(); const coins1 = await alice.getCoins();
const coins2 = await bob.getCoins(); const coins2 = await bob.getCoins();