Fix linter errors

This commit is contained in:
Alex Browne
2018-06-14 16:38:21 -07:00
parent 897560745a
commit ef61c3543f

View File

@@ -37,6 +37,7 @@ export class RevertTraceSubprovider extends TraceCollectionSubprovider {
this._logger = getLogger('sol-cov'); this._logger = getLogger('sol-cov');
this._logger.setLevel(isVerbose ? levels.TRACE : levels.ERROR); this._logger.setLevel(isVerbose ? levels.TRACE : levels.ERROR);
} }
// tslint:disable-next-line:no-unused-variable
protected async _recordTxTraceAsync(address: string, data: string | undefined, txHash: string): Promise<void> { protected async _recordTxTraceAsync(address: string, data: string | undefined, txHash: string): Promise<void> {
await this._web3Wrapper.awaitTransactionMinedAsync(txHash, 0); await this._web3Wrapper.awaitTransactionMinedAsync(txHash, 0);
const trace = await this._web3Wrapper.getTransactionTraceAsync(txHash, { const trace = await this._web3Wrapper.getTransactionTraceAsync(txHash, {