From 1608a9e1a996a0df920940e2fd6ec02afe904c3b Mon Sep 17 00:00:00 2001 From: MoneroOcean Date: Mon, 9 Jun 2025 08:26:03 -0700 Subject: [PATCH] PR fixes --- src/main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cc b/src/main.cc index 6c8b9ff..37bdbda 100644 --- a/src/main.cc +++ b/src/main.cc @@ -332,7 +332,7 @@ NAN_METHOD(construct_mm_parent_block_blob) { // (parentBlockTemplate, blob_type, if (!parse_and_validate_block_from_blob(input, b)) return THROW_ERROR_EXCEPTION("construct_mm_parent_block_blob: Failed to parse prent block"); if (blob_type == BLOB_TYPE_CRYPTONOTE_LOKI || blob_type == BLOB_TYPE_CRYPTONOTE_XTNC) b.miner_tx.version = cryptonote::loki_version_2; if (blob_type == BLOB_TYPE_CRYPTONOTE_ARQMA) { - b.miner_tx.arq_version = static_cast(cryptonote_arq::txversion::v3); + b.miner_tx.version = static_cast(cryptonote_arq::txversion::v3); b.miner_tx.arq_tx_type = cryptonote_arq::txtype::standard; }