mirror of
https://github.com/ton-blockchain/ton
synced 2025-03-09 15:40:10 +00:00
added support for config change proposals
- added some fift scripts for the config change proposal voting - added validator-engine-console support for the config change proposal voting - additional sanity checks in catchain - unsafe slow catchain resync method
This commit is contained in:
parent
a31f8d4424
commit
4dd5eea11f
35 changed files with 753 additions and 144 deletions
|
@ -129,8 +129,9 @@ class CatChainInst : public td::actor::Actor {
|
|||
for (auto &n : nodes_) {
|
||||
nodes.push_back(ton::catchain::CatChainNode{n.adnl_id, n.id_full});
|
||||
}
|
||||
catchain_ = ton::catchain::CatChain::create(make_callback(), opts, keyring_, adnl_, overlay_manager_,
|
||||
std::move(nodes), nodes_[idx_].id, unique_hash_, std::string(""));
|
||||
catchain_ =
|
||||
ton::catchain::CatChain::create(make_callback(), opts, keyring_, adnl_, overlay_manager_, std::move(nodes),
|
||||
nodes_[idx_].id, unique_hash_, std::string(""), false);
|
||||
}
|
||||
|
||||
CatChainInst(td::actor::ActorId<ton::keyring::Keyring> keyring, td::actor::ActorId<ton::adnl::Adnl> adnl,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue