From 12298ea392525ed1de87115003e7d89267489c88 Mon Sep 17 00:00:00 2001 From: Fabio Berger Date: Sun, 12 Nov 2017 18:11:30 -0500 Subject: Don't return anything --- test/utils/rpc.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'test/utils/rpc.ts') diff --git a/test/utils/rpc.ts b/test/utils/rpc.ts index 1fc9f2428..299e72e79 100644 --- a/test/utils/rpc.ts +++ b/test/utils/rpc.ts @@ -30,8 +30,7 @@ export class RPC { const method = 'evm_mine'; const params: any[] = []; const payload = this.toPayload(method, params); - const didRevert = await this.sendAsync(payload); - return didRevert; + await this.sendAsync(payload); } private toPayload(method: string, params: any[] = []): string { const payload = JSON.stringify({ -- cgit v1.2.3