Skip to content

Commit b1c58c4

Browse files
committed
Fix setting block heights in CatChainReceiverImpl::synchronize_with
1 parent 648a5a2 commit b1c58c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

catchain/catchain-receiver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -825,7 +825,7 @@ void CatChainReceiverImpl::synchronize_with(CatChainReceiverSource *S) {
825825
if (SS->blamed()) {
826826
rt[i] = -1;
827827
} else {
828-
rt[i] = static_cast<td::int32>(S->delivered_height());
828+
rt[i] = static_cast<td::int32>(SS->delivered_height());
829829
}
830830
}
831831

0 commit comments

Comments
 (0)