GraphQL: Typo in error message for GraphQL "call" request

Signed-off-by: Jamie Lokier <jamie@shareable.org>
This commit is contained in:
Jamie Lokier 2021-05-03 07:40:37 +01:00
parent 6dd14e4f4f
commit f3f872d707
No known key found for this signature in database
GPG Key ID: CBC25C68435C30A2
1 changed files with 1 additions and 1 deletions

View File

@ -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)