mirror of
https://github.com/ton-blockchain/ton
synced 2025-03-09 15:40:10 +00:00
Improve block broadcasts
This commit is contained in:
parent
4c8d25ac1b
commit
0e7374610d
20 changed files with 125 additions and 278 deletions
|
@ -206,7 +206,10 @@ class OverlayMemberCertificate {
|
|||
return expire_at_ < cur_time - 3;
|
||||
}
|
||||
|
||||
auto tl() const {
|
||||
tl_object_ptr<ton_api::overlay_MemberCertificate> tl() const {
|
||||
if (empty()) {
|
||||
return create_tl_object<ton_api::overlay_emptyMemberCertificate>();
|
||||
}
|
||||
return create_tl_object<ton_api::overlay_memberCertificate>(signed_by_.tl(), flags_, slot_, expire_at_,
|
||||
signature_.clone_as_buffer_slice());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue