From f81a6972895a353cf23c9a4c308cb5b0bc08204d Mon Sep 17 00:00:00 2001 From: Ivan FB <128452529+Ivansete-status@users.noreply.github.com> Date: Wed, 6 May 2026 21:27:09 +0200 Subject: [PATCH] Update ffi/ffi_context.nim Co-authored-by: Gabriel Cruz <8129788+gmelodie@users.noreply.github.com> --- ffi/ffi_context.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffi/ffi_context.nim b/ffi/ffi_context.nim index c9f6c71..6cf0a75 100644 --- a/ffi/ffi_context.nim +++ b/ffi/ffi_context.nim @@ -114,7 +114,7 @@ proc watchdogThreadBody(ctx: ptr FFIContext) {.thread.} = # Give time for the node to be created and up before sending watchdog requests. # waitSync returns early if watchdogStopSignal fires (i.e. on destroy). - let startWait = ctx.watchdogStopSignal.waitSync(WatchdogStartDelay) + let stopSignal = ctx.watchdogStopSignal.waitSync(WatchdogStartDelay) if startWait.isErr(): error "watchdog: start-delay waitSync failed", error = startWait.error elif startWait.get():