mirror of
https://github.com/ton-blockchain/ton
synced 2025-03-09 15:40:10 +00:00
Automatically issue and import fast sync overlay certificates
This commit is contained in:
parent
09c4488fbf
commit
378b5e94c8
12 changed files with 661 additions and 183 deletions
|
@ -37,7 +37,9 @@ class AdnlNodeIdShort {
|
|||
}
|
||||
explicit AdnlNodeIdShort(td::Bits256 value) : hash_(value) {
|
||||
}
|
||||
explicit AdnlNodeIdShort(tl_object_ptr<ton_api::adnl_id_short> obj) : hash_(obj->id_) {
|
||||
explicit AdnlNodeIdShort(tl_object_ptr<ton_api::adnl_id_short> &&obj) : hash_(obj->id_) {
|
||||
}
|
||||
explicit AdnlNodeIdShort(const tl_object_ptr<ton_api::adnl_id_short> &obj) : hash_(obj->id_) {
|
||||
}
|
||||
|
||||
const auto &pubkey_hash() const {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue