Skip to content

Commit 9ae76f7

Browse files
committed
fix
1 parent 26e3bc1 commit 9ae76f7

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

harness/btcstaker.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ func (s *BTCStaker) runForever(ctx context.Context, stakerAddress btcutil.Addres
101101
}
102102

103103
paramsResp.Params.MinStakingValueSat = 300_000
104-
paramsResp.Params.UnbondingFeeSat = 800
104+
paramsResp.Params.UnbondingFeeSat = 1500
105105

106106
// each round rnd FP to delegate
107107
s.fpPK = s.randomFpPK()
@@ -192,8 +192,7 @@ func (s *BTCStaker) signBip322NativeSegwit(stakerAddress btcutil.Address) (*btcs
192192

193193
toSign := bip322.GetToSignTx(toSpend)
194194

195-
amt := float64(toSpend.TxOut[0].Value) / 1e8
196-
fmt.Printf("🔍 BIP322 Signing - Amount: %.8f BTC (%d sats)\n", amt, toSpend.TxOut[0].Value)
195+
amt := float64(0)
197196
signed, all, err := s.btcClient.SignRawTransactionWithWallet2(toSign, []btcjson.RawTxWitnessInput{
198197
{
199198
Txid: toSpendhash.String(),

0 commit comments

Comments
 (0)