Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion payjoin-cli/src/app/v1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ impl AppTrait for App {
Ok(())
}

#[allow(clippy::incompatible_msrv)]
async fn receive_payjoin(&self, amount: Amount) -> Result<()> {
let mut interrupt = self.interrupt.clone();
tokio::select! {
Expand Down
2 changes: 0 additions & 2 deletions payjoin-cli/src/app/v2/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,6 @@ impl AppTrait for App {

fn wallet(&self) -> BitcoindWallet { self.wallet.clone() }

#[allow(clippy::incompatible_msrv)]
async fn send_payjoin(&self, bip21: &str, fee_rate: FeeRate) -> Result<()> {
use payjoin::UriExt;
let uri = Uri::try_from(bip21)
Expand Down Expand Up @@ -323,7 +322,6 @@ impl AppTrait for App {
}
}

#[allow(clippy::incompatible_msrv)]
async fn receive_payjoin(&self, amount: Amount) -> Result<()> {
let address = self.wallet().get_new_address()?;
let persister = ReceiverPersister::new(self.db.clone())?;
Expand Down
Loading