From 3c3dadcb8beb72d418aff51c5d73a9bd3ae6917a Mon Sep 17 00:00:00 2001 From: Codex Bot Date: Mon, 30 Mar 2026 09:37:59 +0200 Subject: [PATCH] Allow single-output Zephyr daemon templates --- src/base/tools/cryptonote/BlockTemplate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/tools/cryptonote/BlockTemplate.cpp b/src/base/tools/cryptonote/BlockTemplate.cpp index 1477cbfd..54ecd666 100644 --- a/src/base/tools/cryptonote/BlockTemplate.cpp +++ b/src/base/tools/cryptonote/BlockTemplate.cpp @@ -265,7 +265,7 @@ bool xmrig::BlockTemplate::parse(bool hashes) ar(m_numOutputs); if (m_coin == Coin::ZEPHYR) { - if (m_numOutputs < 2) { + if (m_numOutputs < 1) { return false; } }