mirror of
https://github.com/ton-blockchain/ton
synced 2025-03-09 15:40:10 +00:00
Collator: change deferring behavior when out queue size is big (#1135)
This commit is contained in:
parent
cb69f307e9
commit
e32a74e9c5
5 changed files with 43 additions and 5 deletions
|
@ -64,6 +64,11 @@ struct CollatorOptions : public td::CntObject {
|
|||
td::uint32 dispatch_phase_3_max_total = 150;
|
||||
td::uint32 dispatch_phase_2_max_per_initiator = 20;
|
||||
td::optional<td::uint32> dispatch_phase_3_max_per_initiator; // Default - depends on out msg queue size
|
||||
|
||||
// Don't defer messages from these accounts
|
||||
std::set<std::pair<WorkchainId, StdSmcAddress>> whitelist;
|
||||
// Prioritize these accounts on each phase of process_dispatch_queue
|
||||
std::set<std::pair<WorkchainId, StdSmcAddress>> prioritylist;
|
||||
};
|
||||
|
||||
struct ValidatorManagerOptions : public td::CntObject {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue