From f3f872d707a00ec9440febfa815540f069239cf4 Mon Sep 17 00:00:00 2001 From: Jamie Lokier Date: Mon, 3 May 2021 07:40:37 +0100 Subject: [PATCH] GraphQL: Typo in error message for GraphQL "call" request Signed-off-by: Jamie Lokier --- nimbus/graphql/ethapi.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nimbus/graphql/ethapi.nim b/nimbus/graphql/ethapi.nim index 27e4e5981..3fe44d669 100644 --- a/nimbus/graphql/ethapi.nim +++ b/nimbus/graphql/ethapi.nim @@ -761,7 +761,7 @@ proc blockCall(ud: RootRef, params: Args, parent: Node): RespResult {.apiPragma. let (callData, gasLimit) = toCallData(param) ctx.makeCall(callData, h.header, ctx.chainDB) except Exception as em: - err("estimateGas error: " & em.msg) + err("call error: " & em.msg) proc blockEstimateGas(ud: RootRef, params: Args, parent: Node): RespResult {.apiPragma.} = let ctx = GraphqlContextRef(ud)