Skip to content

Commit

Permalink
Rectified fat fingures side effect πŸ˜‚
Browse files Browse the repository at this point in the history
  • Loading branch information
BitcoinZavior committed Oct 2, 2023
1 parent aba83a7 commit d4326cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transaction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ impl PartiallySignedTransaction {
pub fn process_response(context: Arc<Context>, response: String) -> Result<Self, PayjoinError> {
let ctx: payjoin::send::Context = match Arc::try_unwrap(context) {
Ok(e) => e.into(),
Err(_) => panic!("Context preproses failed"),
Err(_) => panic!("Context pre-process failed"),
};
match ctx.process_response(&mut response.as_bytes()) {
Ok(e) => Ok(PartiallySignedTransaction(e)),
Expand Down

0 comments on commit d4326cc

Please sign in to comment.