Skip to content

Commit

Permalink
Bug fix initial funding (#303)
Browse files Browse the repository at this point in the history
  • Loading branch information
ekrembal authored Sep 13, 2024
1 parent 947eda8 commit 9399bbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/operator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ where
let mut tx = db.begin_transaction().await?;
// check if funding utxo is already set
if db.get_funding_utxo(Some(&mut tx)).await?.is_none() {
let outpoint = rpc.send_to_address(&signer.address, config.bridge_amount_sats * 2)?;
let outpoint = rpc.send_to_address(&signer.address, 200_000_000)?;
let funding_utxo = UTXO {
outpoint,
txout: TxOut {
Expand Down

0 comments on commit 9399bbe

Please sign in to comment.