Skip to content

Commit

Permalink
operator: Fix compilation errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
ceyhunsen committed Sep 19, 2024
1 parent 268ad86 commit 1727c33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/operator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ where

let our_sig =
self.signer
.sign_taproot_script_spend_tx_new(&mut slash_or_take_tx_handler, 0, 0)?;
.sign_taproot_script_spend_tx(&mut slash_or_take_tx_handler, 0, 0)?;
// tracing::debug!("slash_or_take_tx_handler: {:#?}", slash_or_take_tx_handler);
handle_taproot_witness_new(
&mut slash_or_take_tx_handler,
Expand Down Expand Up @@ -643,7 +643,7 @@ where

let our_sig = self
.signer
.sign_taproot_script_spend_tx_new(&mut operator_takes_tx, 1, 0)?;
.sign_taproot_script_spend_tx(&mut operator_takes_tx, 1, 0)?;

handle_taproot_witness_new(
&mut operator_takes_tx,
Expand Down

0 comments on commit 1727c33

Please sign in to comment.