47 uint256 hash = pindex->GetBlockHash();
65 if (!proof.
verify(stakeUtxoDustThreshold, proof_state)) {
68 error =
_(
"The avalanche proof has no stake.");
71 error =
_(
"The avalanche proof stake is too low.");
74 error =
_(
"The avalanche proof has duplicated stake.");
77 error =
_(
"The avalanche proof has invalid stake signatures.");
81 _(
"The avalanche proof has too many utxos (max: %u)."),
85 error =
_(
"The avalanche proof is invalid.");
99 if (!dg.
verify(dg_state, auth)) {
102 error =
_(
"The avalanche delegation has invalid signatures.");
106 "The avalanche delegation has too many delegation levels.");
109 error =
_(
"The avalanche delegation is invalid.");
114 if (auth != expectedPubKey) {
116 "The avalanche delegation does not match the expected public key.");
141 uint64_t mempool_sequence)
override {
149 std::unique_ptr<PeerData> peerDataIn,
CKey sessionKeyIn,
150 uint32_t minQuorumTotalScoreIn,
151 double minQuorumConnectedScoreRatioIn,
152 int64_t minAvaproofsNodeCountIn,
153 uint32_t staleVoteThresholdIn, uint32_t staleVoteFactorIn,
154 Amount stakeUtxoDustThreshold,
bool preConsensus,
155 bool stakingPreConsensus,
size_t maxElementPoll)
156 : avaconfig(
std::move(avaconfigIn)), connman(connmanIn),
157 chainman(chainmanIn), mempool(mempoolIn), round(0),
159 stakeUtxoDustThreshold, chainman, stakingPreConsensus,
160 peerDataIn ? peerDataIn->proof :
ProofRef())),
161 peerData(
std::move(peerDataIn)), sessionKey(
std::move(sessionKeyIn)),
162 minQuorumScore(minQuorumTotalScoreIn),
163 minQuorumConnectedScoreRatio(minQuorumConnectedScoreRatioIn),
164 minAvaproofsNodeCount(minAvaproofsNodeCountIn),
165 staleVoteThreshold(staleVoteThresholdIn),
166 staleVoteFactor(staleVoteFactorIn), m_preConsensus(preConsensus),
167 m_stakingPreConsensus(stakingPreConsensus),
168 m_maxElementPoll(maxElementPoll) {
175 std::unordered_set<ProofRef, SaltedProofHasher> registeredProofs;
177 peerManager->cleanupDanglingProofs(registeredProofs));
178 for (
const auto &proof : registeredProofs) {
180 "Promoting previously dangling proof %s\n",
181 proof->getId().ToString());
192 std::unordered_set<ProofRef, SaltedProofHasher> registeredProofs;
197 dumpPath, registeredProofs));
202 for (
const auto &proof : registeredProofs) {
224std::unique_ptr<Processor>
234 if (argsman.
IsArgSet(
"-avaproofstakeutxodustthreshold") &&
236 stakeUtxoDustThreshold)) {
237 error =
_(
"The avalanche stake utxo dust threshold amount is invalid.");
241 if (argsman.
IsArgSet(
"-avasessionkey")) {
244 error =
_(
"The avalanche session key is invalid.");
252 if (argsman.
IsArgSet(
"-avaproof")) {
253 if (!argsman.
IsArgSet(
"-avamasterkey")) {
255 "The avalanche master key is missing for the avalanche proof.");
261 error =
_(
"The avalanche master key is invalid.");
271 peerData = std::make_unique<PeerData>();
278 std::unique_ptr<DelegationBuilder> dgb;
281 if (argsman.
IsArgSet(
"-avadelegation")) {
290 error =
_(
"The delegation does not match the proof.");
296 "The master key does not match the delegation public key.");
300 dgb = std::make_unique<DelegationBuilder>(dg);
302 if (masterPubKey !=
peerData->proof->getMaster()) {
304 _(
"The master key does not match the proof public key.");
308 dgb = std::make_unique<DelegationBuilder>(*
peerData->proof);
313 if (sessionPubKey != masterPubKey) {
314 if (!dgb->addLevel(masterKey, sessionPubKey)) {
315 error =
_(
"Failed to generate a delegation for this session.");
319 peerData->delegation = dgb->build();
327 const auto queryTimeoutDuration =
328 std::chrono::milliseconds(argsman.
GetIntArg(
333 if (argsman.
IsArgSet(
"-avaminquorumstake") &&
335 error =
_(
"The avalanche min quorum stake amount is invalid.");
340 error =
_(
"The avalanche min quorum stake amount is out of range.");
344 double minQuorumConnectedStakeRatio =
346 if (argsman.
IsArgSet(
"-avaminquorumconnectedstakeratio")) {
348 int64_t megaMinRatio;
350 argsman.
GetArg(
"-avaminquorumconnectedstakeratio",
""), 6,
353 _(
"The avalanche min quorum connected stake ratio is invalid.");
356 minQuorumConnectedStakeRatio = double(megaMinRatio) / 1000000;
359 if (minQuorumConnectedStakeRatio < 0 || minQuorumConnectedStakeRatio > 1) {
361 "The avalanche min quorum connected stake ratio is out of range.");
366 argsman.
GetIntArg(
"-avaminavaproofsnodecount",
369 error =
_(
"The minimum number of node that sent avaproofs message "
370 "should be non-negative");
378 error =
strprintf(
_(
"The avalanche stale vote threshold must be "
379 "greater than or equal to %d"),
384 error =
strprintf(
_(
"The avalanche stale vote threshold must be less "
385 "than or equal to %d"),
386 std::numeric_limits<uint32_t>::max());
393 error =
_(
"The avalanche stale vote factor must be greater than 0");
397 error =
strprintf(
_(
"The avalanche stale vote factor must be less than "
399 std::numeric_limits<uint32_t>::max());
405 int64_t maxElementPoll = argsman.
GetIntArg(
408 maxElementPoll > std::numeric_limits<uint32_t>::max()) {
410 _(
"The -avamaxelementpoll value must be between %d and %d"),
412 std::numeric_limits<uint32_t>::max());
417 return std::unique_ptr<Processor>(
new Processor(
422 stakeUtxoDustThreshold,
425 argsman.
GetBoolArg(
"-avalanchestakingpreconsensus",
428 static_cast<size_t>(maxElementPoll)));
432 return item.valueless_by_exception() ||
437 [](
const auto &item) {
return item ==
nullptr; },
456 ->insert(std::make_pair(item,
VoteRecord(accepted)))
468 if (peerManager->forPeer(proof->getId(), [&](
const Peer &peer) {
469 peerid = peer.peerid;
472 return peerManager->setFinalized(peerid);
485 auto it = r->find(item);
490 return it->second.isAccepted();
499 auto it = r->find(item);
504 return it->second.getConfidence();
513 auto it = r->find(item);
514 return it != r.
end();
527 finalizedItems.reset();
540 TCPResponse(Response responseIn,
const CKey &key)
544 const uint256 hash = hasher.GetHash();
566 std::vector<VoteItemUpdate> &updates,
567 bool &disconnect, std::string &error) {
573 peerManager->updateNextRequestTimeForResponse(nodeid,
response));
575 std::vector<CInv> invs;
583 auto it = w->find(std::make_tuple(nodeid,
response.getRound()));
585 error =
"unexpected-ava-response";
589 invs = std::move(it->invs);
594 const std::vector<Vote> &votes =
response.GetVotes();
595 size_t size = invs.size();
596 if (votes.size() != size) {
598 error =
"invalid-ava-response-size";
602 for (
size_t i = 0; i < size; i++) {
603 if (invs[i].hash != votes[i].GetHash()) {
605 error =
"invalid-ava-response-content";
610 std::map<AnyVoteItem, Vote, VoteMapComparator> responseItems;
614 for (
size_t i = 0; i < size; i++) {
627 responseItems.insert(std::make_pair(std::move(item), votes[i]));
633 for (
const auto &p : responseItems) {
635 const Vote &v = p.second;
637 auto it = voteRecordsWriteView->find(item);
638 if (it == voteRecordsWriteView.end()) {
643 auto &vr = it->second;
644 if (!vr.registerVote(nodeid, v.
GetError())) {
650 voteRecordsWriteView->erase(it);
656 if (!vr.hasFinalized()) {
659 updates.emplace_back(std::move(item), vr.isAccepted()
667 updates.emplace_back(std::move(item), vr.isAccepted()
670 voteRecordsWriteView->erase(it);
675 for (
const auto &update : updates) {
681 const auto &item = update.getVoteItem();
683 if (!std::holds_alternative<const CBlockIndex *>(item)) {
699 const CBlockIndex *pindex = std::get<const CBlockIndex *>(item);
701 if (finalizationTip &&
702 finalizationTip->GetAncestor(pindex->
nHeight) == pindex) {
706 finalizationTip = pindex;
722 if (!delayedAvahelloNodeIds.emplace(pfrom->
GetId()).second) {
732 hasher << delegation.
getId();
759 auto it = delayedAvahelloNodeIds.begin();
760 while (it != delayedAvahelloNodeIds.end()) {
766 it = delayedAvahelloNodeIds.erase(it);
790 if (peerManager->isInConflictingPool(proofid)) {
792 "conflicting-utxos");
796 if (peerManager->isInvalid(proofid)) {
800 "avalanche-invalidated");
829 if (peerManager->latchAvaproofsSent(nodeid)) {
843 if (peerManager->getNodeCount() < 8) {
876 uint32_t totalPeersScore;
877 uint32_t connectedPeersScore;
880 totalPeersScore = peerManager->getTotalPeersScore();
881 connectedPeersScore = peerManager->getConnectedPeersScore();
886 peerManager->forPeer(localProof->getId(), [](
const Peer &peer) {
887 return peer.node_count == 0;
889 connectedPeersScore += localProof->getScore();
899 uint32_t minConnectedScore =
901 if (connectedPeersScore < minConnectedScore) {
910 bool computedRewards =
false;
959 bool rewardsInserted =
false;
961 pindex, _stakingRewards.
winners))) {
966 .emplace(pindex->
GetBlockHash(), std::move(_stakingRewards))
975 return rewardsInserted;
980 return stakingRewards.erase(prevBlockHash) > 0;
992 for (
auto it = stakingRewards.begin(); it != stakingRewards.end();) {
993 if (it->second.blockheight < minHeight) {
994 it = stakingRewards.erase(it);
1002 return peerManager->cleanupStakeContenders(minHeight));
1007 std::vector<std::pair<ProofId, CScript>> &winners)
const {
1009 auto it = stakingRewards.find(prevBlockHash);
1010 if (it == stakingRewards.end()) {
1014 winners = it->second.winners;
1019 std::vector<CScript> &payouts)
const {
1020 std::vector<std::pair<ProofId, CScript>> winners;
1026 payouts.reserve(winners.size());
1027 for (
auto &winner : winners) {
1028 payouts.push_back(std::move(winner.second));
1035 const std::vector<CScript> &payouts) {
1041 stakingReward.
winners.reserve(payouts.size());
1042 for (
const CScript &payout : payouts) {
1048 peerManager->setStakeContenderWinners(pprev, payouts);
1052 return stakingRewards.insert_or_assign(pprev->
GetBlockHash(), stakingReward)
1058 const std::vector<std::pair<ProofId, CScript>> &winners) {
1063 stakingReward.
winners = winners;
1066 return stakingRewards.insert_or_assign(pprev->
GetBlockHash(), stakingReward)
1086 contenderId, prevblockhash));
1089 std::vector<std::pair<ProofId, CScript>> winners;
1091 if (winners.size() == 0) {
1103 peerManager->acceptStakeContender(contenderId);
1110 std::vector<std::pair<ProofId, CScript>> winners;
1113 peerManager->finalizeStakeContender(contenderId, prevblockhash,
1118 if (winners.size() > 0) {
1130 peerManager->rejectStakeContender(contenderId);
1144 peerManager->promoteStakeContendersToBlock(pprev);
1149 std::vector<StakeContenderId> pollableContenders;
1159 std::vector<StakeContenderId> &pollableContenders) {
1161 std::vector<std::pair<ProofId, CScript>> winners;
1165 return peerManager->setContenderStatusForLocalWinners(
1171 auto registerProofs = [&]() {
1174 auto registeredProofs = peerManager->updatedBlockTip();
1178 if (peerManager->registerProof(
peerData->proof, localProofState)) {
1179 registeredProofs.insert(
peerData->proof);
1190 if (peerManager->isImmature(localProofId)) {
1194 if (peerManager->isInConflictingPool(localProofId)) {
1197 "conflicting-utxos");
1199 if (peerManager->isBoundToPeer(localProofId)) {
1205 peerData->proofState = std::move(localProofState));
1208 return registeredProofs;
1211 auto registeredProofs = registerProofs();
1212 for (
const auto &proof : registeredProofs) {
1248 auto voteRecordsReadView =
1256 nodeid = peerManager->selectNode();
1262 peerManager->forNode(nodeid, [&max_elements](
const Node &
node) {
1263 max_elements =
node.maxElements;
1267 std::vector<CInv> invs =
1274 voteRecordsReadView.reset();
1283 [
this, invs = std::move(invs)](
1285 uint64_t current_round =
round++;
1289 auto timeout = Now<SteadyMilliseconds>() +
1293 {pnode->
GetId(), current_round, timeout, invs});
1295 peerManager->updateNextRequestTimeForPoll(
1296 pnode->
GetId(), timeout, current_round);
1304 Poll(current_round, std::move(invs))));
1314 peerManager->removeNode(nodeid);
1320 for (
auto it = w->begin(); it != w->end();) {
1330 auto now = Now<SteadyMilliseconds>();
1331 std::map<CInv, uint8_t> timedout_items{};
1337 while (it != w->get<
query_timeout>().end() && it->timeout < now) {
1338 for (
const auto &i : it->invs) {
1339 timedout_items[i]++;
1346 if (timedout_items.empty()) {
1352 for (
const auto &p : timedout_items) {
1359 auto it = voteRecordsWriteView->find(item);
1360 if (it == voteRecordsWriteView.end()) {
1364 it->second.clearInflightRequest(p.second);
1370 bool forPoll)
const {
1371 std::vector<CInv> invs;
1386 for (
const auto &[item, voteRecord] : voteRecordsReadView) {
1387 if (invs.size() >= max_elements) {
1393 const bool shouldPoll =
1394 forPoll ? voteRecord.registerPoll() : voteRecord.shouldPoll();
1400 invs.emplace_back(std::visit(buildInvFromVoteItem, item));
1428 return conflicting.GetTx(TxId(inv.hash));
1442 if (pindex->nStatus.isInvalid()) {
1450 pindex->
nHeight) == pindex)) {
1457 return processor.invalidatedBlocks.contains(
1471 const ProofId &proofid = proof->getId();
1473 LOCK(processor.cs_peerManager);
1476 return processor.peerManager->isBoundToPeer(proofid) ||
1477 processor.peerManager->isInConflictingPool(proofid);
1486 return processor.getStakeContenderStatus(contenderId) != -1;
1490 if (!processor.mempool) {
1496 return processor.mempool->isWorthPolling(tx));
1509 return processor.chainman.ActiveChain().Contains(pindex));
1516 processor.cs_peerManager,
1517 return processor.peerManager->isBoundToPeer(proof->getId()));
1525 return processor.getStakeContenderStatus(contenderId) == 0;
1530 if (!processor.mempool) {
1537 return processor.mempool->exists(tx->GetId()));
bool MoneyRange(const Amount nValue)
static constexpr bool DEFAULT_PERSIST_AVAPEERS
Default for -persistavapeers.
static constexpr double AVALANCHE_DEFAULT_MIN_QUORUM_CONNECTED_STAKE_RATIO
Default minimum percentage of stake-weighted peers we must have a node for to constitute a usable quo...
static constexpr bool DEFAULT_AVALANCHE_STAKING_PRECONSENSUS
Default for -avalanchestakingpreconsensus.
static constexpr double AVALANCHE_DEFAULT_MIN_AVAPROOFS_NODE_COUNT
Default minimum number of nodes that sent us an avaproofs message before we can consider our quorum s...
static constexpr bool DEFAULT_AVALANCHE_PRECONSENSUS
Default for -avalanchepreconsensus.
static constexpr Amount AVALANCHE_DEFAULT_MIN_QUORUM_STAKE
Default minimum cumulative stake of all known peers that constitutes a usable quorum.
fs::path GetDataDirNet() const
Get data directory path with appended network identifier.
bool IsArgSet(const std::string &strArg) const
Return true if the given argument has been manually set.
int64_t GetIntArg(const std::string &strArg, int64_t nDefault) const
Return integer argument or default value.
std::string GetArg(const std::string &strArg, const std::string &strDefault) const
Return string argument or default value.
bool GetBoolArg(const std::string &strArg, bool fDefault) const
Return boolean argument or default value.
The block chain is a tree shaped structure starting with the genesis block at the root,...
BlockHash GetBlockHash() const
int nHeight
height of the entry in the chain. The genesis block has height 0
bool ForNode(NodeId id, std::function< bool(CNode *pnode)> func)
size_t GetNodeCount(ConnectionDirection) const
void PushMessage(CNode *pnode, CSerializedNetMsg &&msg)
Inv(ventory) message data.
bool IsMsgStakeContender() const
An encapsulated secp256k1 private key.
bool IsValid() const
Check whether this private key is valid.
void MakeNewKey(bool fCompressed)
Generate a new private key using a cryptographic PRNG.
CPubKey GetPubKey() const
Compute the public key from a private key.
bool SignSchnorr(const uint256 &hash, SchnorrSig &sig, uint32_t test_case=0) const
Create a Schnorr signature.
Information about a peer.
uint64_t GetLocalNonce() const
uint64_t nRemoteHostNonce
uint64_t nRemoteExtraEntropy
uint64_t GetLocalExtraEntropy() const
void invsPolled(uint32_t count)
The node was polled for count invs.
An encapsulated public key.
Simple class for background tasks that should be run periodically or once "after a while".
void scheduleEvery(Predicate p, std::chrono::milliseconds delta) EXCLUSIVE_LOCKS_REQUIRED(!newTaskMutex)
Repeat p until it return false.
CTxMemPool stores valid-according-to-the-current-best-chain transactions that may be included in the ...
RecursiveMutex cs
This mutex needs to be locked when accessing mapTx or other members that are guarded by it.
CTransactionRef get(const TxId &txid) const
auto withConflicting(Callable &&func) const EXCLUSIVE_LOCKS_REQUIRED(!cs_conflicting)
Provides an interface for creating and interacting with one or two chainstates: an IBD chainstate gen...
bool IsInitialBlockDownload() const
Check whether we are doing an initial block download (synchronizing from disk or network)
CBlockIndex * ActiveTip() const EXCLUSIVE_LOCKS_REQUIRED(GetMutex())
const Consensus::Params & GetConsensus() const
node::BlockManager m_blockman
A single BlockManager instance is shared across each constructed chainstate to avoid duplicating bloc...
A writer stream (for serialization) that computes a 256-bit hash.
static RCUPtr make(Args &&...args)
Construct a new object that is owned by the pointer.
ReadView getReadView() const
bool Invalid(Result result, const std::string &reject_reason="", const std::string &debug_message="")
ProofId getProofId() const
static bool FromHex(Delegation &dg, const std::string &dgHex, bilingual_str &errorOut)
bool verify(DelegationState &state, CPubKey &auth) const
const DelegationId & getId() const
const CPubKey & getDelegatedPubkey() const
const LimitedProofId & getLimitedProofId() const
void updatedBlockTip() override
NotificationsHandler(Processor *p)
void transactionAddedToMempool(const CTransactionRef &tx, uint64_t mempool_sequence) override
void sendResponse(CNode *pfrom, Response response) const
const uint32_t staleVoteThreshold
Voting parameters.
std::atomic< bool > quorumIsEstablished
AnyVoteItem getVoteItemFromInv(const CInv &inv) const EXCLUSIVE_LOCKS_REQUIRED(!cs_peerManager)
Mutex cs_finalizedItems
Rolling bloom filter to track recently finalized inventory items of any type.
bool sendHelloInternal(CNode *pfrom) EXCLUSIVE_LOCKS_REQUIRED(cs_delayedAvahelloNodeIds)
int getConfidence(const AnyVoteItem &item) const
bool addToReconcile(const AnyVoteItem &item) EXCLUSIVE_LOCKS_REQUIRED(!cs_finalizedItems)
Processor(Config avaconfig, interfaces::Chain &chain, CConnman *connmanIn, ChainstateManager &chainman, CTxMemPool *mempoolIn, CScheduler &scheduler, std::unique_ptr< PeerData > peerDataIn, CKey sessionKeyIn, uint32_t minQuorumTotalScoreIn, double minQuorumConnectedScoreRatioIn, int64_t minAvaproofsNodeCountIn, uint32_t staleVoteThresholdIn, uint32_t staleVoteFactorIn, Amount stakeUtxoDustThresholdIn, bool preConsensus, bool stakingPreConsensus, size_t maxElementPoll)
bool isStakingPreconsensusActivated(const CBlockIndex *pprev) const
RWCollection< QuerySet > queries
ProofRegistrationState getLocalProofRegistrationState() const EXCLUSIVE_LOCKS_REQUIRED(!cs_peerManager)
bool setContenderStatusForLocalWinners(const CBlockIndex *pindex, std::vector< StakeContenderId > &pollableContenders) EXCLUSIVE_LOCKS_REQUIRED(!cs_peerManager
Helper to set the vote status for local winners in the contender cache.
void transactionAddedToMempool(const CTransactionRef &tx) EXCLUSIVE_LOCKS_REQUIRED(!cs_finalizedItems)
bool sendHello(CNode *pfrom) EXCLUSIVE_LOCKS_REQUIRED(!cs_delayedAvahelloNodeIds)
Send a avahello message.
bool isRecentlyFinalized(const uint256 &itemId) const EXCLUSIVE_LOCKS_REQUIRED(!cs_finalizedItems)
void setRecentlyFinalized(const uint256 &itemId) EXCLUSIVE_LOCKS_REQUIRED(!cs_finalizedItems)
bool startEventLoop(CScheduler &scheduler)
bool isQuorumEstablished() LOCKS_EXCLUDED(cs_main) EXCLUSIVE_LOCKS_REQUIRED(!cs_peerManager
std::atomic< uint64_t > round
Keep track of peers and queries sent.
bool canShareLocalProof()
static std::unique_ptr< Processor > MakeProcessor(const ArgsManager &argsman, interfaces::Chain &chain, CConnman *connman, ChainstateManager &chainman, CTxMemPool *mempoolIn, CScheduler &scheduler, bilingual_str &error)
EventLoop eventLoop
Event loop machinery.
int64_t minAvaproofsNodeCount
const bool m_preConsensus
bool isPolled(const AnyVoteItem &item) const
Mutex cs_delayedAvahelloNodeIds
bool setStakingRewardWinners(const CBlockIndex *pprev, const std::vector< CScript > &payouts) EXCLUSIVE_LOCKS_REQUIRED(!cs_stakingRewards
void runEventLoop() EXCLUSIVE_LOCKS_REQUIRED(!cs_peerManager
Mutex cs_invalidatedBlocks
We don't need many blocks but a low false positive rate.
void updatedBlockTip() EXCLUSIVE_LOCKS_REQUIRED(!cs_peerManager
RWCollection< VoteMap > voteRecords
Items to run avalanche on.
std::unique_ptr< interfaces::Handler > chainNotificationsHandler
uint32_t minQuorumScore
Quorum management.
void FinalizeNode(const ::Config &config, const CNode &node) override LOCKS_EXCLUDED(cs_main) EXCLUSIVE_LOCKS_REQUIRED(!cs_peerManager
Handle removal of a node.
bool getStakingRewardWinners(const BlockHash &prevBlockHash, std::vector< std::pair< ProofId, CScript > > &winners) const EXCLUSIVE_LOCKS_REQUIRED(!cs_stakingRewards)
std::atomic< bool > m_canShareLocalProof
void cleanupStakingRewards(const int minHeight) EXCLUSIVE_LOCKS_REQUIRED(!cs_stakingRewards
bool isAccepted(const AnyVoteItem &item) const
ProofRef getLocalProof() const
void acceptStakeContender(const StakeContenderId &contenderId) EXCLUSIVE_LOCKS_REQUIRED(!cs_peerManager)
bool reconcileOrFinalize(const ProofRef &proof) EXCLUSIVE_LOCKS_REQUIRED(!cs_peerManager
Wrapper around the addToReconcile for proofs that adds back the finalization flag to the peer if it i...
int getStakeContenderStatus(const StakeContenderId &contenderId) const EXCLUSIVE_LOCKS_REQUIRED(!cs_peerManager
Track votes on stake contenders.
const uint32_t staleVoteFactor
void promoteAndPollStakeContenders(const CBlockIndex *pprev) EXCLUSIVE_LOCKS_REQUIRED(!cs_stakingRewards
Promote stake contender cache entries to a given block and then poll.
void sendDelayedAvahello() EXCLUSIVE_LOCKS_REQUIRED(!cs_delayedAvahelloNodeIds)
void finalizeStakeContender(const StakeContenderId &contenderId) EXCLUSIVE_LOCKS_REQUIRED(!cs_peerManager
std::unique_ptr< PeerData > peerData
const size_t m_maxElementPoll
bool eraseStakingRewardWinner(const BlockHash &prevBlockHash) EXCLUSIVE_LOCKS_REQUIRED(!cs_stakingRewards)
bool isPreconsensusActivated(const CBlockIndex *pprev) const
std::vector< CInv > getInvsForNextPoll(RWCollection< VoteMap >::ReadView &voteRecordsReadView, size_t max_elements, bool forPoll=true) const
bool isWorthPolling(const AnyVoteItem &item) const EXCLUSIVE_LOCKS_REQUIRED(!cs_finalizedItems)
CPubKey getSessionPubKey() const
ChainstateManager & chainman
std::atomic< int64_t > avaproofsNodeCounter
std::atomic_bool m_stakingPreConsensus
bool computeStakingReward(const CBlockIndex *pindex) EXCLUSIVE_LOCKS_REQUIRED(!cs_peerManager
bool registerVotes(NodeId nodeid, const Response &response, std::vector< VoteItemUpdate > &updates, bool &disconnect, std::string &error) EXCLUSIVE_LOCKS_REQUIRED(!cs_peerManager
void clearTimedoutRequests() EXCLUSIVE_LOCKS_REQUIRED(!cs_peerManager)
Mutex cs_peerManager
Keep track of the peers and associated infos.
bool getLocalAcceptance(const AnyVoteItem &item) const
void rejectStakeContender(const StakeContenderId &contenderId) EXCLUSIVE_LOCKS_REQUIRED(!cs_peerManager)
void clearInvsNotWorthPolling() EXCLUSIVE_LOCKS_REQUIRED(!cs_peerManager
void avaproofsSent(NodeId nodeid) LOCKS_EXCLUDED(cs_main) EXCLUSIVE_LOCKS_REQUIRED(!cs_peerManager)
double minQuorumConnectedScoreRatio
void clearFinalizedItems() EXCLUSIVE_LOCKS_REQUIRED(!cs_finalizedItems)
static bool FromHex(Proof &proof, const std::string &hexProof, bilingual_str &errorOut)
bool verify(const Amount &stakeUtxoDustThreshold, ProofValidationState &state) const
static uint32_t amountToScore(Amount amount)
uint32_t GetError() const
Path class wrapper to block calls to the fs::path(std::string) implicit constructor and the fs::path:...
Interface giving clients (wallet processes, maybe other analysis tools in the future) ability to acce...
virtual std::unique_ptr< Handler > handleNotifications(std::shared_ptr< Notifications > notifications)=0
Register handler for notifications.
CBlockIndex * LookupBlockIndex(const BlockHash &hash) EXCLUSIVE_LOCKS_REQUIRED(cs_main)
static const uint256 ZERO
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
std::array< uint8_t, CPubKey::SCHNORR_SIZE > SchnorrSig
a Schnorr signature
CKey DecodeSecret(const std::string &str)
#define LogPrint(category,...)
bool ParseMoney(const std::string &money_string, Amount &nRet)
Parse an amount denoted in full coins.
CSerializedNetMsg Make(std::string msg_type, Args &&...args)
const char * AVAHELLO
Contains a delegation and a signature.
const char * AVARESPONSE
Contains an avalanche::Response.
const char * AVAPOLL
Contains an avalanche::Poll.
static constexpr Amount PROOF_DUST_THRESHOLD
Minimum amount per utxo.
std::variant< const ProofRef, const CBlockIndex *, const StakeContenderId, const CTransactionRef > AnyVoteItem
@ INVALID_STAKE_SIGNATURE
static bool VerifyDelegation(const Delegation &dg, const CPubKey &expectedPubKey, bilingual_str &error)
static bool isNull(const AnyVoteItem &item)
static bool VerifyProof(const Amount &stakeUtxoDustThreshold, const Proof &proof, bilingual_str &error)
static uint256 GetVoteItemId(const AnyVoteItem &item)
RCUPtr< const Proof > ProofRef
static std::string PathToString(const path &path)
Convert path object to byte string.
Implement std::hash so RCUPtr can be used as a key for maps or sets.
static constexpr NodeId NO_NODE
Special NodeId that represent no node.
std::shared_ptr< const CTransaction > CTransactionRef
static const std::string AVAPEERS_FILE_NAME
static constexpr std::chrono::milliseconds AVALANCHE_TIME_STEP
Run the avalanche event loop every 10ms.
static constexpr size_t DEFAULT_AVALANCHE_MAX_ELEMENT_POLL
Maximum item that can be polled at once.
static constexpr size_t AVALANCHE_CONTENDER_MAX_POLLABLE
Maximum number of stake contenders to poll for, leaving room for polling blocks and proofs in the sam...
static constexpr std::chrono::milliseconds AVALANCHE_DEFAULT_QUERY_TIMEOUT
How long before we consider that a query timed out.
static constexpr size_t AVALANCHE_MAX_ELEMENT_POLL_LEGACY
Legacy maximum element poll.
static constexpr int AVALANCHE_MAX_PROOF_STAKES
How many UTXOs can be used for a single proof.
@ MSG_AVA_STAKE_CONTENDER
#define SERIALIZE_METHODS(cls, obj)
Implement the Serialize and Unserialize methods by delegating to a single templated static method tha...
bool IsStakingRewardsActivated(const Consensus::Params ¶ms, const CBlockIndex *pprev)
A BlockHash is a unqiue identifier for a block.
bool stopEventLoop() EXCLUSIVE_LOCKS_REQUIRED(!cs_running)
bool startEventLoop(CScheduler &scheduler, std::function< void()> runEventLoop, std::chrono::milliseconds delta) EXCLUSIVE_LOCKS_REQUIRED(!cs_running)
A TxId is the identifier of a transaction.
const std::chrono::milliseconds queryTimeoutDuration
bool operator()(const CBlockIndex *pindex) const LOCKS_EXCLUDED(cs_main)
const Processor & processor
bool operator()(const CBlockIndex *pindex) const LOCKS_EXCLUDED(cs_main)
ProofRegistrationState proofState GUARDED_BY(cs_proofState)
std::vector< std::pair< ProofId, CScript > > winners
StakeContenderIds are unique for each block to ensure that the peer polling for their acceptance has ...
#define AssertLockNotHeld(cs)
#define WITH_LOCK(cs, code)
Run code while locking a mutex.
#define EXCLUSIVE_LOCKS_REQUIRED(...)
bilingual_str _(const char *psz)
Translation function.
bool ParseFixedPoint(std::string_view val, int decimals, int64_t *amount_out)
Parse number as fixed point according to JSON number syntax.
static constexpr uint32_t AVALANCHE_VOTE_STALE_FACTOR
Scaling factor applied to confidence to determine staleness threshold.
static constexpr uint32_t AVALANCHE_VOTE_STALE_MIN_THRESHOLD
Lowest configurable staleness threshold (finalization score + necessary votes to increase confidence ...
static constexpr uint32_t AVALANCHE_VOTE_STALE_THRESHOLD
Number of votes before a record may be considered as stale.