File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -229,7 +229,7 @@ impl FromStr for CoinSelectionAlgo {
229
229
"oldest-first" => OldestFirst ,
230
230
"newest-first" => NewestFirst ,
231
231
"bnb" => BranchAndBound ,
232
- unknown => bail ! ( "unknown coin selection algorithm '{}'" , unknown ) ,
232
+ unknown => bail ! ( "unknown coin selection algorithm '{unknown }'" ) ,
233
233
} )
234
234
}
235
235
}
@@ -715,8 +715,8 @@ pub fn handle_commands<CS: clap::Subcommand, S: clap::Args>(
715
715
_ => unimplemented ! ( "multi xkey signer" ) ,
716
716
} ;
717
717
718
- let _ = sign_res
719
- . map_err ( |errors| anyhow:: anyhow!( "failed to sign PSBT {:?}" , errors ) ) ?;
718
+ let _ =
719
+ sign_res . map_err ( |errors| anyhow:: anyhow!( "failed to sign PSBT {errors :?}" ) ) ?;
720
720
721
721
let mut obj = serde_json:: Map :: new ( ) ;
722
722
obj. insert ( "psbt" . to_string ( ) , json ! ( psbt. to_string( ) ) ) ;
You can’t perform that action at this time.
0 commit comments