From 119c0dff9c087f01fe6f38dfc2573540b81e67f1 Mon Sep 17 00:00:00 2001 From: Mark Spanbroek Date: Wed, 3 Sep 2025 15:45:58 +0200 Subject: [PATCH] chore: fix warning --- 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 73ba2a4..5a81381 100644 --- a/ethers/providers/jsonrpc.nim +++ b/ethers/providers/jsonrpc.nim @@ -54,7 +54,7 @@ proc new*( url=defaultUrl, pollingInterval=defaultPollingInterval, maxPriorityFeePerGas=defaultMaxPriorityFeePerGas -): JsonRpcProvider {.raises: [JsonRpcProviderError].} = +): JsonRpcProvider {.raises: [].} = var initialized: Future[void] var client: RpcClient