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 2016132 commit 6b91a2fCopy full SHA for 6b91a2f
magicblock-committor-service/src/intent_executor/task_info_fetcher.rs
@@ -303,16 +303,16 @@ pub struct NullTaskInfoFetcher;
303
impl TaskInfoFetcher for NullTaskInfoFetcher {
304
async fn fetch_next_commit_ids(
305
&self,
306
- pubkeys: &[Pubkey],
+ _pubkeys: &[Pubkey],
307
) -> TaskInfoFetcherResult<HashMap<Pubkey, u64>> {
308
- Ok(pubkeys.iter().map(|pubkey| (*pubkey, 0)).collect())
+ Ok(Default::default())
309
}
310
311
async fn fetch_rent_reimbursements(
312
313
314
) -> TaskInfoFetcherResult<Vec<Pubkey>> {
315
- Ok(pubkeys.to_vec())
316
317
318
fn peek_commit_id(&self, _pubkey: &Pubkey) -> Option<u64> {
0 commit comments