`true` if the last seen commit in self and the provided one have the same `min_tx_offset`.
(&self, commit: &StoredCommit)
| 791 | /// `true` if the last seen commit in self and the provided one have the |
| 792 | /// same `min_tx_offset`. |
| 793 | fn same_offset_as(&self, commit: &StoredCommit) -> bool { |
| 794 | let Self::LastSeen { tx_range, .. } = self else { |
| 795 | return false; |
| 796 | }; |
| 797 | tx_range.start == commit.min_tx_offset |
| 798 | } |
| 799 | |
| 800 | /// `true` if the last seen commit in self and the provided one have the |
| 801 | /// same `checksum`. |