Merge pull request #5963 from nuttycom/bug/orchard_final_root_before_nu5_active

Do not return Orchard components from z_gettreestate before NU5 activation.
This commit is contained in:
Steven 2022-05-17 07:10:07 -07:00 committed by GitHub
commit a45c2a2d4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 32 additions and 28 deletions

View File

@ -1316,6 +1316,7 @@ UniValue z_gettreestate(const UniValue& params, bool fHelp)
UniValue sapling_result(UniValue::VOBJ);
UniValue sapling_commitments(UniValue::VOBJ);
sapling_commitments.pushKV("finalRoot", pindex->hashFinalSaplingRoot.GetHex());
if (Params().GetConsensus().NetworkUpgradeActive(pindex->nHeight, Consensus::UPGRADE_SAPLING)) {
bool need_skiphash = false;
SaplingMerkleTree tree;
if (pcoinsTip->GetSaplingAnchorAt(pindex->hashFinalSaplingRoot, tree)) {
@ -1332,6 +1333,7 @@ UniValue z_gettreestate(const UniValue& params, bool fHelp)
sapling_result.pushKV("skipHash", pindex_skip->GetBlockHash().GetHex());
}
}
}
sapling_result.pushKV("commitments", sapling_commitments);
res.pushKV("sapling", sapling_result);
}
@ -1341,6 +1343,7 @@ UniValue z_gettreestate(const UniValue& params, bool fHelp)
UniValue orchard_result(UniValue::VOBJ);
UniValue orchard_commitments(UniValue::VOBJ);
orchard_commitments.pushKV("finalRoot", pindex->hashFinalOrchardRoot.GetHex());
if (Params().GetConsensus().NetworkUpgradeActive(pindex->nHeight, Consensus::UPGRADE_NU5)) {
bool need_skiphash = false;
OrchardMerkleFrontier tree;
if (pcoinsTip->GetOrchardAnchorAt(pindex->hashFinalOrchardRoot, tree)) {
@ -1357,6 +1360,7 @@ UniValue z_gettreestate(const UniValue& params, bool fHelp)
orchard_result.pushKV("skipHash", pindex_skip->GetBlockHash().GetHex());
}
}
}
orchard_result.pushKV("commitments", orchard_commitments);
res.pushKV("orchard", orchard_result);
}