Skip to content
Draft
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 @@ -95,7 +95,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
3 changes: 0 additions & 3 deletions payjoin-cli/src/app/v2/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,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 @@ -276,7 +275,6 @@ impl AppTrait for App {
Ok(())
}

#[allow(clippy::incompatible_msrv)]
async fn resume_payjoins(&self) -> Result<()> {
let recv_session_ids = self.db.get_recv_session_ids()?;
let send_session_ids = self.db.get_send_session_ids()?;
Expand Down Expand Up @@ -608,7 +606,6 @@ impl App {
res
}

#[allow(clippy::incompatible_msrv)]
async fn read_from_directory(
&self,
session: Receiver<Initialized>,
Expand Down
Loading