Skip to content

Commit

Permalink
lint code
Browse files Browse the repository at this point in the history
  • Loading branch information
nicbus committed May 21, 2024
1 parent e319377 commit 88425df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion migration/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ mod tests {
#[async_std::test]
async fn test_migrations() {
let db_path = PathBuf::from(TEST_DATA_DIR_PARTS.join(&MAIN_SEPARATOR.to_string()));
std::fs::create_dir_all(&db_path.parent().unwrap()).unwrap();
std::fs::create_dir_all(db_path.parent().unwrap()).unwrap();
if db_path.exists() {
std::fs::remove_file(&db_path).unwrap();
}
Expand Down
1 change: 1 addition & 0 deletions src/wallet/test/send.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3629,6 +3629,7 @@ fn witness_multiple_assets_success() {
}
);
// transfer vout + BTC amount match tx outputs
#[allow(unreachable_patterns)]
let tx_details = match rcv_wallet.indexer() {
Indexer::Electrum(client) => client
.raw_call(
Expand Down

0 comments on commit 88425df

Please sign in to comment.