Skip to content

Commit

Permalink
Fix proxy error
Browse files Browse the repository at this point in the history
  • Loading branch information
tvorogme committed Sep 13, 2024
1 parent 7d64279 commit f272741
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lite-server-daemon/adnl-lite-proxy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -908,8 +908,8 @@ namespace ton::liteserver {
"cannot load block", "seqno not in db", "block not found"}) {
if (error->message_.find(substring) != std::string::npos) {
if (refire + 1 > allowed_refire) {
LOG(ERROR) << "Too deep refire";
auto res = create_serialize_tl_object<lite_api::liteServer_error>(228, "Too deep refire");
LOG(ERROR) << "Too deep refire for cannot load block";
// auto res = create_serialize_tl_object<lite_api::liteServer_error>(228, "Too deep refire");
process_cache(std::move(data), res.clone(), compiled_query, elapsed);
promise.set_value(std::move(res));
return;
Expand Down

0 comments on commit f272741

Please sign in to comment.