mirror of
https://github.com/ton-blockchain/ton
synced 2025-03-09 15:40:10 +00:00
updated submodules, bugfixes
- added new fift/func code for validator complaint creation - bugfixes in validator - updates in tonlib - new versions of rocksdb/abseil - hardfork support
This commit is contained in:
parent
16a4566091
commit
9f008b129f
129 changed files with 8438 additions and 879 deletions
|
@ -42,8 +42,8 @@ td::BufferSlice BlockHandleImpl::serialize() const {
|
|||
(flags & dbf_inited_masterchain_ref_block) ? masterchain_ref_seqno_ : 0);
|
||||
}
|
||||
|
||||
BlockHandleImpl::BlockHandleImpl(td::BufferSlice data) {
|
||||
auto obj = fetch_tl_object<ton_api::db_block_info>(std::move(data), true).move_as_ok();
|
||||
BlockHandleImpl::BlockHandleImpl(td::Slice data) {
|
||||
auto obj = fetch_tl_object<ton_api::db_block_info>(data, true).move_as_ok();
|
||||
flags_ = obj->flags_ & ~(Flags::dbf_processed | Flags::dbf_moved_handle);
|
||||
id_ = create_block_id(obj->id_);
|
||||
prev_[0] = (flags_ & dbf_inited_prev_left) ? create_block_id(obj->prev_left_) : BlockIdExt{};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue