Skip to content

Commit

Permalink
More cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
linuskendall committed Jun 22, 2023
1 parent fcd9054 commit 9726a3e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions nft_ingester/src/program_transformers/bubblegum/mint_v1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -321,8 +321,7 @@ where
};
task.sanitize();
return task.into_task_data();
}
//_ => Err(IngesterError::NotImplemented),
} //_ => Err(IngesterError::NotImplemented),
};
}
Err(IngesterError::ParsingError(
Expand Down
2 changes: 1 addition & 1 deletion nft_ingester/src/program_transformers/bubblegum/redeem.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ use crate::{
save_changelog_event, u32_to_u8_array, upsert_asset_with_leaf_info,
},
};
use solana_program::pubkey::Pubkey;
use blockbuster::{instruction::InstructionBundle, programs::bubblegum::BubblegumInstruction};
use log::debug;
use sea_orm::{ConnectionTrait, TransactionTrait};
use solana_program::pubkey::Pubkey;

pub async fn redeem<'c, T>(
parsing_result: &BubblegumInstruction,
Expand Down
3 changes: 1 addition & 2 deletions nft_ingester/src/program_transformers/bubblegum/transfer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,7 @@ where
seq as i64,
)
.await
}
//_ => Err(IngesterError::NotImplemented),
} //_ => Err(IngesterError::NotImplemented),
};
}
Err(IngesterError::ParsingError(
Expand Down

0 comments on commit 9726a3e

Please sign in to comment.