From 5af9b605e4623526ef0ed5dfcc81f715b26abc77 Mon Sep 17 00:00:00 2001 From: Nodari Chkuaselidze Date: Sat, 29 Nov 2025 19:56:51 +0400 Subject: [PATCH] wallet: Pass worker pool to the wallet for signing. --- lib/wallet/plugin.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/wallet/plugin.js b/lib/wallet/plugin.js index 71ad830fa..7bad32906 100644 --- a/lib/wallet/plugin.js +++ b/lib/wallet/plugin.js @@ -46,6 +46,7 @@ class Plugin extends EventEmitter { this.network = node.network; this.logger = node.logger; + this.workers = node.workers; this.client = new NodeClient(node);