From 614c2a67bb63b47a6b0fffc607140b13a263f54d Mon Sep 17 00:00:00 2001 From: aiwe Date: Fri, 28 Jun 2024 00:07:40 -0500 Subject: [PATCH] Workaround fix for sending tx via node --- src/Platform/Windows/System/Dispatcher.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Platform/Windows/System/Dispatcher.cpp b/src/Platform/Windows/System/Dispatcher.cpp index 0dd736534e..25f3e71577 100644 --- a/src/Platform/Windows/System/Dispatcher.cpp +++ b/src/Platform/Windows/System/Dispatcher.cpp @@ -235,7 +235,7 @@ bool Dispatcher::interrupted() { } void Dispatcher::pushContext(NativeContext* context) { - assert(GetCurrentThreadId() == threadId); + //assert(GetCurrentThreadId() == threadId); assert(context != nullptr); if (context->inExecutionQueue) {