From 5ddcddbd88124a5a58e5e9c7e721d72ae40bf776 Mon Sep 17 00:00:00 2001 From: Mark Spanbroek Date: Wed, 3 Sep 2025 14:53:14 +0200 Subject: [PATCH] chore: fix warning --- testmodule/providers/jsonrpc/testJsonRpcSubscriptions.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testmodule/providers/jsonrpc/testJsonRpcSubscriptions.nim b/testmodule/providers/jsonrpc/testJsonRpcSubscriptions.nim index 9417cfa..fc89736 100644 --- a/testmodule/providers/jsonrpc/testJsonRpcSubscriptions.nim +++ b/testmodule/providers/jsonrpc/testJsonRpcSubscriptions.nim @@ -211,7 +211,7 @@ suite "HTTP polling subscriptions - mock tests": if log.isErr: failedResultReceived = true - let id = await subscriptions.subscribeLogs(filter, handler) + discard await subscriptions.subscribeLogs(filter, handler) await sleepAsync(50.milliseconds) mockServer.nextGetChangesReturnsError = true