Remove unused tslint disable

This commit is contained in:
Leonid Logvinov
2019-01-15 12:09:48 +01:00
parent c2ec4174b7
commit 75a4bbc5f2

View File

@@ -1,6 +1,6 @@
import { BlockchainLifecycle } from '@0x/dev-utils';
import { logUtils } from '@0x/utils';
import { Callback, ErrorCallback, NextCallback, Subprovider } from '@0x/subproviders';
import { logUtils } from '@0x/utils';
import { CallDataRPC, marshaller, Web3Wrapper } from '@0x/web3-wrapper';
import { JSONRPCRequestPayload, Provider, TxData } from 'ethereum-types';
import * as _ from 'lodash';
@@ -31,8 +31,7 @@ function logAsyncErrors(fn: AsyncFunc): AsyncFunc {
try {
await fn(...args);
} catch (err) {
// tslint:disable-next-line no-console
logUtils.error(err);
logUtils.log(err);
throw err;
}
}