Skip to content

Commit

Permalink
Fix compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
SpyCheese committed Jun 21, 2024
1 parent 29ed4d4 commit cd9bed2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crypto/block/block.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2412,7 +2412,7 @@ bool remove_dispatch_queue_entry(vm::AugmentedDictionary& dispatch_queue, const
return false;
}
vm::Dictionary dict{64};
size_t dict_size;
td::uint64 dict_size;
if (!unpack_account_dispatch_queue(std::move(account_dispatch_queue), dict, dict_size)) {
return false;
}
Expand Down
2 changes: 1 addition & 1 deletion validator/impl/collator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3671,7 +3671,7 @@ bool Collator::process_dispatch_queue() {
return fatal_error("invalid dispatch queue in shard state");
}
vm::Dictionary dict{64};
size_t dict_size;
td::uint64 dict_size;
if (!block::unpack_account_dispatch_queue(account_dispatch_queue, dict, dict_size)) {
return fatal_error(PSTRING() << "invalid account dispatch queue for account " << src_addr.to_hex());
}
Expand Down

0 comments on commit cd9bed2

Please sign in to comment.