Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ozankaymak committed Sep 5, 2024
1 parent ae44907 commit 21c1742
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions core/src/operator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,12 @@ where
.signer
.sign(TapSighash::from_byte_array(kickoff_sig_hash));

let tx = self.db.begin_transaction().await?;
self.db
.save_kickoff_utxo(deposit_outpoint, kickoff_utxo.clone())
.await?;
tx.commit().await?;

return Ok((kickoff_utxo, sig));
}

Expand Down

0 comments on commit 21c1742

Please sign in to comment.