Skip to content

Commit

Permalink
Improve
Browse files Browse the repository at this point in the history
  • Loading branch information
tvorogme committed Sep 9, 2024
1 parent e0523e9 commit 36eb724
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions validator/impl/liteserver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ namespace ton {
adnl::AdnlNodeIdShort dst)
: query_(std::move(data)), manager_(std::move(manager)), cache_(std::move(cache)),
promise_(std::move(promise)), dst_(dst) {
compiled_query_string = "UNKNOWN to " + dst.bits256_value().to_hex();
timeout_ = td::Timestamp::in(default_timeout_msec * 0.001);
started_at_ = std::time(nullptr);
}
Expand All @@ -110,6 +111,7 @@ namespace ton {
td::Promise<std::tuple<td::Ref<vm::CellSlice>, UnixTime, LogicalTime, std::unique_ptr<block::ConfigInfo>>> promise)
: manager_(std::move(manager)), acc_state_promise_(std::move(promise)), acc_workchain_(wc),
acc_addr_(acc_addr) {
compiled_query_string = "Fetch account state: " + std::to_string(wc) + ":" + acc_addr.to_hex();
timeout_ = td::Timestamp::in(default_timeout_msec * 0.001);
}

Expand Down

0 comments on commit 36eb724

Please sign in to comment.