23namespace network::tarcap {
33 std::shared_ptr<final_chain::FinalChain> final_chain, std::shared_ptr<KeyManager> key_manager,
34 std::shared_ptr<SlashingManager> slashing_manager);
45 void setNetwork(std::weak_ptr<Network> network);
66 std::pair<bool, std::shared_ptr<PbftVote>>
isUniqueVote(
const std::shared_ptr<PbftVote>& vote)
const;
120 std::pair<bool, std::vector<std::shared_ptr<PbftVote>>>
checkRewardVotes(
const std::shared_ptr<PbftBlock>& pbft_block,
190 std::pair<bool, std::string>
validateVote(
const std::shared_ptr<PbftVote>& vote,
bool strict =
true)
const;
273 std::shared_ptr<DbStorage>
db_;
Definition verified_votes.hpp:51
void resetRewardVotes(PbftPeriod period, PbftRound round, PbftStep step, const blk_hash_t &block_hash, Batch &batch)
Replace current reward votes with new period, round & block hash based on vote.
Definition vote_manager.cpp:387
std::optional< PbftRound > determineNewRound(PbftPeriod current_pbft_period, PbftRound current_pbft_round)
Check if there are enough next voting type votes to set PBFT to a forward round within period.
Definition vote_manager.cpp:350
std::shared_mutex reward_votes_info_mutex_
Definition vote_manager.hpp:293
bool addVerifiedVote(const std::shared_ptr< PbftVote > &vote)
Add a vote to the verified votes map.
Definition vote_manager.cpp:139
std::shared_ptr< final_chain::FinalChain > final_chain_
Definition vote_manager.hpp:275
std::pair< bool, std::vector< std::shared_ptr< PbftVote > > > checkRewardVotes(const std::shared_ptr< PbftBlock > &pbft_block, bool copy_votes)
Check reward votes for specified pbft block.
Definition vote_manager.cpp:477
bool voteAlreadyValidated(const vote_hash_t &vote_hash) const
Definition vote_manager.cpp:762
std::optional< uint64_t > getPbftTwoTPlusOne(PbftPeriod pbft_period, PbftVoteTypes vote_type) const
Get 2t+1. 2t+1 is 2/3 of PBFT sortition threshold and plus 1 for a specific period.
Definition vote_manager.cpp:728
std::vector< vote_hash_t > extra_reward_votes_
Definition vote_manager.hpp:292
blk_hash_t reward_votes_block_hash_
Definition vote_manager.hpp:289
std::pair< bool, std::shared_ptr< PbftVote > > isUniqueVote(const std::shared_ptr< PbftVote > &vote) const
Definition vote_manager.cpp:282
VoteManager(const VoteManager &)=delete
std::vector< std::shared_ptr< PbftVote > > getVerifiedVotes() const
Get all verified votes.
Definition vote_manager.cpp:76
std::shared_ptr< DbStorage > db_
Definition vote_manager.hpp:273
const PbftConfig & kPbftConfig
Definition vote_manager.hpp:271
std::atomic< PbftPeriod > current_pbft_period_
Definition vote_manager.hpp:281
bool voteInVerifiedMap(std::shared_ptr< PbftVote > const &vote) const
Check if the vote has been in the verified votes map.
Definition vote_manager.cpp:268
std::shared_ptr< PbftVote > generateVote(const blk_hash_t &blockhash, PbftVoteTypes type, PbftPeriod period, PbftRound round, PbftStep step, const WalletConfig &wallet)
Generate a vote.
Definition vote_manager.cpp:669
void setNetwork(std::weak_ptr< Network > network)
Set network as a weak pointer.
Definition vote_manager.cpp:74
void clearOwnVerifiedVotes(Batch &write_batch)
Clear own verified votes.
Definition vote_manager.cpp:614
bool genAndValidateVrfSortition(PbftPeriod pbft_period, PbftRound pbft_round, const WalletConfig &wallet) const
Generates vrf sortition and calculates its weight.
Definition vote_manager.cpp:766
uint64_t getPbftSortitionThreshold(uint64_t total_dpos_votes_count, PbftVoteTypes vote_type) const
Get PBFT sortition threshold for specific period.
Definition vote_manager.cpp:619
std::shared_ptr< PbftChain > pbft_chain_
Definition vote_manager.hpp:274
std::vector< std::shared_ptr< PbftVote > > getOwnVerifiedVotes()
Definition vote_manager.cpp:612
std::shared_ptr< KeyManager > key_manager_
Definition vote_manager.hpp:276
std::shared_ptr< SlashingManager > slashing_manager_
Definition vote_manager.hpp:278
void saveOwnVerifiedVote(const std::shared_ptr< PbftVote > &vote)
Saves own verified vote into memory and db.
Definition vote_manager.cpp:607
VoteManager(VoteManager &&)=delete
std::vector< std::shared_ptr< PbftVote > > getProposalVotes(PbftPeriod period, PbftRound round) const
Get all verified votes in proposal vote type for the current PBFT round.
Definition vote_manager.cpp:333
void setCurrentPbftPeriodAndRound(PbftPeriod pbft_period, PbftRound pbft_round)
Sets current pbft period & round. It also checks if we dont already have 2t+1 vote bundles(pf any typ...
Definition vote_manager.cpp:82
std::unordered_map< PbftVoteTypes, std::pair< PbftPeriod, uint64_t > > current_two_t_plus_one_
Definition vote_manager.hpp:301
VerifiedVotes verified_votes_
Definition vote_manager.hpp:286
std::weak_ptr< Network > network_
Definition vote_manager.hpp:277
std::vector< std::shared_ptr< PbftVote > > own_verified_votes_
Definition vote_manager.hpp:296
std::atomic< PbftRound > current_pbft_round_
Definition vote_manager.hpp:283
ExpirationCache< vote_hash_t > already_validated_votes_
Definition vote_manager.hpp:306
VoteManager & operator=(const VoteManager &)=delete
std::vector< std::shared_ptr< PbftVote > > getRewardVotes()
Get reward votes with the round during which was the previous block pushed.
Definition vote_manager.cpp:582
std::vector< std::shared_ptr< PbftVote > > getTwoTPlusOneVotedBlockVotes(PbftPeriod period, PbftRound round, TwoTPlusOneVotedBlockType type) const
Definition vote_manager.cpp:807
std::shared_ptr< PbftVote > generateVoteWithWeight(const blk_hash_t &blockhash, PbftVoteTypes vote_type, PbftPeriod period, PbftRound round, PbftStep step, const WalletConfig &wallet)
Place a vote, save it in the verified votes queue, and gossip to peers.
Definition vote_manager.cpp:631
uint64_t getVerifiedVotesSize() const
Get the total size of all verified votes.
Definition vote_manager.cpp:78
std::pair< bool, std::string > validateVote(const std::shared_ptr< PbftVote > &vote, bool strict=true) const
Validates vote.
Definition vote_manager.cpp:676
PbftStep getNetworkTplusOneNextVotingStep(PbftPeriod period, PbftRound round) const
Returns greatest step (in specified period & round), for which there is at least t+1 voting power fro...
Definition vote_manager.cpp:130
PbftPeriod getRewardVotesPbftBlockPeriod()
Get current reward votes pbft block period.
Definition vote_manager.cpp:382
PbftRound reward_votes_round_
Definition vote_manager.hpp:291
bool isValidRewardVote(const std::shared_ptr< PbftVote > &vote) const
Definition vote_manager.cpp:444
std::optional< blk_hash_t > getTwoTPlusOneVotedBlock(PbftPeriod period, PbftRound round, TwoTPlusOneVotedBlockType type) const
Get 2t+1 voted block for specific period, round and type, e.g. soft/cert/next voted block.
Definition vote_manager.cpp:798
PbftRound reward_votes_period_
Definition vote_manager.hpp:290
VoteManager & operator=(VoteManager &&)=delete
std::shared_mutex current_two_t_plus_one_mutex_
Definition vote_manager.hpp:302
void cleanupVotesByPeriod(PbftPeriod pbft_period)
Cleanup votes for specified PBFT period.
Definition vote_manager.cpp:80
VoteManager class manage votes for PBFT consensus.
Definition vote_manager.hpp:30
PbftVoteTypes
Definition vrf_sortition.hpp:21
#define LOG_OBJECTS_DEFINE
Definition logger.hpp:60
rocksdb::WriteBatch Batch
Definition storage.hpp:70
uint32_t PbftStep
Definition types.hpp:26
uint32_t PbftRound
Definition types.hpp:25
EthBlockNumber PbftPeriod
Definition types.hpp:24
TwoTPlusOneVotedBlockType
Definition verified_votes.hpp:13
Definition pbft_config.hpp:9