From 9536e5e5bff568603b43c30928bcd242f9c889bd Mon Sep 17 00:00:00 2001 From: Eric <5089238+emizzle@users.noreply.github.com> Date: Tue, 12 Sep 2023 17:00:34 +1000 Subject: [PATCH] more debug logging --- ethers/providers/jsonrpc.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethers/providers/jsonrpc.nim b/ethers/providers/jsonrpc.nim index f5200e7..1a1af49 100644 --- a/ethers/providers/jsonrpc.nim +++ b/ethers/providers/jsonrpc.nim @@ -261,5 +261,5 @@ method sendTransaction*(signer: JsonRpcSigner, client = await signer.provider.client hash = await client.eth_sendTransaction(transaction) - echo "[jsonrpc.sendTransaction] RESPONSE send transaction -- nonce: ", transaction.nonce, ", hash: ", hash + echo "[jsonrpc.sendTransaction] RESPONSE send transaction -- nonce: ", transaction.nonce, ", hash: ", hash.to0xHex return TransactionResponse(hash: hash, provider: signer.provider)