From 9803d004c44efcdf55820149270030e91ff57cc6 Mon Sep 17 00:00:00 2001 From: SpyCheese Date: Tue, 20 Aug 2024 19:55:01 +0300 Subject: [PATCH] Fix getting creator stats in lite-client (#1115) --- lite-client/lite-client.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lite-client/lite-client.cpp b/lite-client/lite-client.cpp index 020aca70..02a5fab6 100644 --- a/lite-client/lite-client.cpp +++ b/lite-client/lite-client.cpp @@ -3429,9 +3429,7 @@ void TestNode::got_creator_stats(ton::BlockIdExt req_blkid, ton::BlockIdExt blki promise.set_error(td::Status::Error(PSLICE() << "invalid CreatorStats record with key " << key.to_hex())); return; } - if (mc_cnt.modified_since(min_utime) || shard_cnt.modified_since(min_utime)) { - func(key, mc_cnt, shard_cnt); - } + func(key, mc_cnt, shard_cnt); allow_eq = false; } if (complete) {