diff --git a/src/base/tools/cryptonote/BlockTemplate.cpp b/src/base/tools/cryptonote/BlockTemplate.cpp index f84a668b..b42ea35a 100644 --- a/src/base/tools/cryptonote/BlockTemplate.cpp +++ b/src/base/tools/cryptonote/BlockTemplate.cpp @@ -41,8 +41,8 @@ bool BlockTemplate::Init(const String& blockTemplate, Coin coin) ar(prev_id); ar(nonce); - // Wownero block template has miner signature starting from version 19 - has_miner_signature = (coin == Coin::WOWNERO) && (major_version >= 19); + // Wownero block template has miner signature starting from version 18 + has_miner_signature = (coin == Coin::WOWNERO) && (major_version >= 18); if (has_miner_signature) { ar(miner_signature); }