Skip to content

Commit f7cb8b7

Browse files
authored
Lint with new rust 1.85.0-nightly (payjoin#447)
This lint was not caught in earlier versions
2 parents f202098 + e8d1eff commit f7cb8b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

payjoin/src/send/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ impl PsbtContext {
517517
let mut res_str = String::new();
518518
response.read_to_string(&mut res_str).map_err(InternalValidationError::Io)?;
519519
let proposal = Psbt::from_str(&res_str).map_err(|_| ResponseError::parse(&res_str))?;
520-
self.process_proposal(proposal).map(Into::into).map_err(Into::into)
520+
self.process_proposal(proposal).map_err(Into::into)
521521
}
522522

523523
fn process_proposal(self, mut proposal: Psbt) -> InternalResult<Psbt> {

0 commit comments

Comments
 (0)