Skip to content

Commit

Permalink
Fix getting creator stats in lite-client
Browse files Browse the repository at this point in the history
  • Loading branch information
SpyCheese committed Aug 19, 2024
1 parent 06515c3 commit 943711c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lite-client/lite-client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 943711c

Please sign in to comment.