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)