We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70fa8fa commit ad255dcCopy full SHA for ad255dc
tap_core/src/manager/tap_manager.rs
@@ -204,24 +204,6 @@ where
204
})
205
}
206
207
- pub async fn obtain_invalid_receipts(
208
- &self,
209
- timestamp_buffer_ns: u64,
210
- receipts_limit: Option<u64>,
211
- ) -> Result<Vec<ReceiptWithState<Failed>>, Error> {
212
- let previous_rav = self.get_previous_rav().await?;
213
- let min_timestamp_ns = previous_rav
214
- .as_ref()
215
- .map(|rav| rav.message.timestampNs + 1)
216
- .unwrap_or(0);
217
-
218
- let (_, invalid_receipts) = self
219
- .collect_receipts(timestamp_buffer_ns, min_timestamp_ns, receipts_limit)
220
- .await?;
221
222
- Ok(invalid_receipts)
223
- }
224
225
fn generate_expected_rav(
226
receipts: &[ReceiptWithState<Reserved>],
227
previous_rav: Option<SignedRAV>,
0 commit comments