1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-03-09 15:40:10 +00:00

Write collation stats to session stats, add collator options for collated data

This commit is contained in:
SpyCheese 2024-11-26 08:54:19 +03:00
parent b3bea413e3
commit b60f6ee72f
11 changed files with 98 additions and 27 deletions

View file

@ -70,6 +70,11 @@ struct CollatorOptions : public td::CntObject {
std::set<std::pair<WorkchainId, StdSmcAddress>> whitelist;
// Prioritize these accounts on each phase of process_dispatch_queue
std::set<std::pair<WorkchainId, StdSmcAddress>> prioritylist;
// Always enable full_collated_data
bool force_full_collated_data = false;
// Ignore collated data size limits from block limits and catchain config
bool ignore_collated_data_limits = false;
};
struct CollatorsList : public td::CntObject {