Fix linter

This commit is contained in:
Leonid Logvinov
2019-01-14 12:16:00 +01:00
parent 2581bc93e5
commit 2b8f0d887a

View File

@@ -26,7 +26,7 @@ type AsyncFunc = (...args: any[]) => Promise<void>;
// we need this because web3-provider-engine does not handler promises in
// the after function of next(after).
function logErrors(fn: AsyncFunc): AsyncFunc {
async function wrapped(...args: any[]): Promise<void> {
async function wrappedAsync(...args: any[]): Promise<void> {
try {
await fn(...args);
} catch (e) {
@@ -35,7 +35,7 @@ function logErrors(fn: AsyncFunc): AsyncFunc {
throw e;
}
}
return wrapped;
return wrappedAsync;
}
// Because there is no notion of a call trace in the Ethereum rpc - we collect them in a rather non-obvious/hacky way.