Add integration tests for price feed transformer

- Verify eth/usd, mkr/usd, and rep/usd price feed logs are successfully
  fetched from Kovan and persisted to Postgres
This commit is contained in:
Rob Mulholand
2018-09-19 11:00:20 -05:00
parent 4b2f5f8524
commit 778517f33f
2 changed files with 147 additions and 1 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ func (client RpcClient) CallContext(ctx context.Context, result interface{}, met
if args == nil {
return client.client.CallContext(ctx, result, method)
} else {
return client.client.CallContext(ctx, result, method, args)
return client.client.CallContext(ctx, result, method, args...)
}
}