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