8ffdcbf999
* Trivial: vout->txout * Re-use SetHexStr in few more places * Tweak log output * fix v13 release notes links * Drop no longer used stuff * Few more trivial fixes * Adjust few rpc help strings * Apply review suggestions
244 lines
8.2 KiB
C++
244 lines
8.2 KiB
C++
// Copyright (c) 2017-2019 The Dash Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include "cbtx.h"
|
|
#include "core_io.h"
|
|
#include "deterministicmns.h"
|
|
#include "llmq/quorums.h"
|
|
#include "llmq/quorums_blockprocessor.h"
|
|
#include "llmq/quorums_commitment.h"
|
|
#include "simplifiedmns.h"
|
|
#include "specialtx.h"
|
|
|
|
#include "base58.h"
|
|
#include "chainparams.h"
|
|
#include "consensus/merkle.h"
|
|
#include "univalue.h"
|
|
#include "validation.h"
|
|
|
|
CSimplifiedMNListEntry::CSimplifiedMNListEntry(const CDeterministicMN& dmn) :
|
|
proRegTxHash(dmn.proTxHash),
|
|
confirmedHash(dmn.pdmnState->confirmedHash),
|
|
service(dmn.pdmnState->addr),
|
|
pubKeyOperator(dmn.pdmnState->pubKeyOperator),
|
|
keyIDVoting(dmn.pdmnState->keyIDVoting),
|
|
isValid(dmn.pdmnState->nPoSeBanHeight == -1)
|
|
{
|
|
}
|
|
|
|
uint256 CSimplifiedMNListEntry::CalcHash() const
|
|
{
|
|
CHashWriter hw(SER_GETHASH, CLIENT_VERSION);
|
|
hw << *this;
|
|
return hw.GetHash();
|
|
}
|
|
|
|
std::string CSimplifiedMNListEntry::ToString() const
|
|
{
|
|
return strprintf("CSimplifiedMNListEntry(proRegTxHash=%s, confirmedHash=%s, service=%s, pubKeyOperator=%s, votingAddress=%s, isValid=%d)",
|
|
proRegTxHash.ToString(), confirmedHash.ToString(), service.ToString(false), pubKeyOperator.ToString(), CBitcoinAddress(keyIDVoting).ToString(), isValid);
|
|
}
|
|
|
|
void CSimplifiedMNListEntry::ToJson(UniValue& obj) const
|
|
{
|
|
obj.clear();
|
|
obj.setObject();
|
|
obj.push_back(Pair("proRegTxHash", proRegTxHash.ToString()));
|
|
obj.push_back(Pair("confirmedHash", confirmedHash.ToString()));
|
|
obj.push_back(Pair("service", service.ToString(false)));
|
|
obj.push_back(Pair("pubKeyOperator", pubKeyOperator.ToString()));
|
|
obj.push_back(Pair("votingAddress", CBitcoinAddress(keyIDVoting).ToString()));
|
|
obj.push_back(Pair("isValid", isValid));
|
|
}
|
|
|
|
CSimplifiedMNList::CSimplifiedMNList(const std::vector<CSimplifiedMNListEntry>& smlEntries)
|
|
{
|
|
mnList = smlEntries;
|
|
|
|
std::sort(mnList.begin(), mnList.end(), [&](const CSimplifiedMNListEntry& a, const CSimplifiedMNListEntry& b) {
|
|
return a.proRegTxHash.Compare(b.proRegTxHash) < 0;
|
|
});
|
|
}
|
|
|
|
CSimplifiedMNList::CSimplifiedMNList(const CDeterministicMNList& dmnList)
|
|
{
|
|
mnList.reserve(dmnList.GetAllMNsCount());
|
|
|
|
dmnList.ForEachMN(false, [this](const CDeterministicMNCPtr& dmn) {
|
|
mnList.emplace_back(*dmn);
|
|
});
|
|
|
|
std::sort(mnList.begin(), mnList.end(), [&](const CSimplifiedMNListEntry& a, const CSimplifiedMNListEntry& b) {
|
|
return a.proRegTxHash.Compare(b.proRegTxHash) < 0;
|
|
});
|
|
}
|
|
|
|
uint256 CSimplifiedMNList::CalcMerkleRoot(bool* pmutated) const
|
|
{
|
|
std::vector<uint256> leaves;
|
|
leaves.reserve(mnList.size());
|
|
for (const auto& e : mnList) {
|
|
leaves.emplace_back(e.CalcHash());
|
|
}
|
|
return ComputeMerkleRoot(leaves, pmutated);
|
|
}
|
|
|
|
CSimplifiedMNListDiff::CSimplifiedMNListDiff()
|
|
{
|
|
}
|
|
|
|
CSimplifiedMNListDiff::~CSimplifiedMNListDiff()
|
|
{
|
|
}
|
|
|
|
bool CSimplifiedMNListDiff::BuildQuorumsDiff(const CBlockIndex* baseBlockIndex, const CBlockIndex* blockIndex)
|
|
{
|
|
auto baseQuorums = llmq::quorumBlockProcessor->GetMinedAndActiveCommitmentsUntilBlock(baseBlockIndex);
|
|
auto quorums = llmq::quorumBlockProcessor->GetMinedAndActiveCommitmentsUntilBlock(blockIndex);
|
|
|
|
std::set<std::pair<Consensus::LLMQType, uint256>> baseQuorumHashes;
|
|
std::set<std::pair<Consensus::LLMQType, uint256>> quorumHashes;
|
|
for (auto& p : baseQuorums) {
|
|
for (auto& p2 : p.second) {
|
|
baseQuorumHashes.emplace(p.first, p2->GetBlockHash());
|
|
}
|
|
}
|
|
for (auto& p : quorums) {
|
|
for (auto& p2 : p.second) {
|
|
quorumHashes.emplace(p.first, p2->GetBlockHash());
|
|
}
|
|
}
|
|
|
|
for (auto& p : baseQuorumHashes) {
|
|
if (!quorumHashes.count(p)) {
|
|
deletedQuorums.emplace_back((uint8_t)p.first, p.second);
|
|
}
|
|
}
|
|
for (auto& p : quorumHashes) {
|
|
if (!baseQuorumHashes.count(p)) {
|
|
llmq::CFinalCommitment qc;
|
|
uint256 minedBlockHash;
|
|
if (!llmq::quorumBlockProcessor->GetMinedCommitment(p.first, p.second, qc, minedBlockHash)) {
|
|
return false;
|
|
}
|
|
newQuorums.emplace_back(qc);
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
void CSimplifiedMNListDiff::ToJson(UniValue& obj) const
|
|
{
|
|
obj.setObject();
|
|
|
|
obj.push_back(Pair("baseBlockHash", baseBlockHash.ToString()));
|
|
obj.push_back(Pair("blockHash", blockHash.ToString()));
|
|
|
|
CDataStream ssCbTxMerkleTree(SER_NETWORK, PROTOCOL_VERSION);
|
|
ssCbTxMerkleTree << cbTxMerkleTree;
|
|
obj.push_back(Pair("cbTxMerkleTree", HexStr(ssCbTxMerkleTree.begin(), ssCbTxMerkleTree.end())));
|
|
|
|
obj.push_back(Pair("cbTx", EncodeHexTx(*cbTx)));
|
|
|
|
UniValue deletedMNsArr(UniValue::VARR);
|
|
for (const auto& h : deletedMNs) {
|
|
deletedMNsArr.push_back(h.ToString());
|
|
}
|
|
obj.push_back(Pair("deletedMNs", deletedMNsArr));
|
|
|
|
UniValue mnListArr(UniValue::VARR);
|
|
for (const auto& e : mnList) {
|
|
UniValue eObj;
|
|
e.ToJson(eObj);
|
|
mnListArr.push_back(eObj);
|
|
}
|
|
obj.push_back(Pair("mnList", mnListArr));
|
|
|
|
UniValue deletedQuorumsArr(UniValue::VARR);
|
|
for (const auto& e : deletedQuorums) {
|
|
UniValue eObj(UniValue::VOBJ);
|
|
eObj.push_back(Pair("llmqType", e.first));
|
|
eObj.push_back(Pair("quorumHash", e.second.ToString()));
|
|
deletedQuorumsArr.push_back(eObj);
|
|
}
|
|
obj.push_back(Pair("deletedQuorums", deletedQuorumsArr));
|
|
|
|
UniValue newQuorumsArr(UniValue::VARR);
|
|
for (const auto& e : newQuorums) {
|
|
UniValue eObj;
|
|
e.ToJson(eObj);
|
|
newQuorumsArr.push_back(eObj);
|
|
}
|
|
obj.push_back(Pair("newQuorums", newQuorumsArr));
|
|
|
|
CCbTx cbTxPayload;
|
|
if (GetTxPayload(*cbTx, cbTxPayload)) {
|
|
obj.push_back(Pair("merkleRootMNList", cbTxPayload.merkleRootMNList.ToString()));
|
|
if (cbTxPayload.nVersion >= 2) {
|
|
obj.push_back(Pair("merkleRootQuorums", cbTxPayload.merkleRootQuorums.ToString()));
|
|
}
|
|
}
|
|
}
|
|
|
|
bool BuildSimplifiedMNListDiff(const uint256& baseBlockHash, const uint256& blockHash, CSimplifiedMNListDiff& mnListDiffRet, std::string& errorRet)
|
|
{
|
|
AssertLockHeld(cs_main);
|
|
mnListDiffRet = CSimplifiedMNListDiff();
|
|
|
|
const CBlockIndex* baseBlockIndex = chainActive.Genesis();
|
|
if (!baseBlockHash.IsNull()) {
|
|
auto it = mapBlockIndex.find(baseBlockHash);
|
|
if (it == mapBlockIndex.end()) {
|
|
errorRet = strprintf("block %s not found", baseBlockHash.ToString());
|
|
return false;
|
|
}
|
|
baseBlockIndex = it->second;
|
|
}
|
|
auto blockIt = mapBlockIndex.find(blockHash);
|
|
if (blockIt == mapBlockIndex.end()) {
|
|
errorRet = strprintf("block %s not found", blockHash.ToString());
|
|
return false;
|
|
}
|
|
const CBlockIndex* blockIndex = blockIt->second;
|
|
|
|
if (!chainActive.Contains(baseBlockIndex) || !chainActive.Contains(blockIndex)) {
|
|
errorRet = strprintf("block %s and %s are not in the same chain", baseBlockHash.ToString(), blockHash.ToString());
|
|
return false;
|
|
}
|
|
if (baseBlockIndex->nHeight > blockIndex->nHeight) {
|
|
errorRet = strprintf("base block %s is higher then block %s", baseBlockHash.ToString(), blockHash.ToString());
|
|
return false;
|
|
}
|
|
|
|
LOCK(deterministicMNManager->cs);
|
|
|
|
auto baseDmnList = deterministicMNManager->GetListForBlock(baseBlockHash);
|
|
auto dmnList = deterministicMNManager->GetListForBlock(blockHash);
|
|
mnListDiffRet = baseDmnList.BuildSimplifiedDiff(dmnList);
|
|
|
|
if (!mnListDiffRet.BuildQuorumsDiff(baseBlockIndex, blockIndex)) {
|
|
errorRet = strprintf("failed to build quorums diff");
|
|
return false;
|
|
}
|
|
|
|
// TODO store coinbase TX in CBlockIndex
|
|
CBlock block;
|
|
if (!ReadBlockFromDisk(block, blockIndex, Params().GetConsensus())) {
|
|
errorRet = strprintf("failed to read block %s from disk", blockHash.ToString());
|
|
return false;
|
|
}
|
|
|
|
mnListDiffRet.cbTx = block.vtx[0];
|
|
|
|
std::vector<uint256> vHashes;
|
|
std::vector<bool> vMatch(block.vtx.size(), false);
|
|
for (const auto& tx : block.vtx) {
|
|
vHashes.emplace_back(tx->GetHash());
|
|
}
|
|
vMatch[0] = true; // only coinbase matches
|
|
mnListDiffRet.cbTxMerkleTree = CPartialMerkleTree(vHashes, vMatch);
|
|
|
|
return true;
|
|
}
|