We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca9acf3 commit c1c809dCopy full SHA for c1c809d
staticaddr/withdraw/manager.go
@@ -410,11 +410,12 @@ func (m *Manager) createFinalizedWithdrawalTx(ctx context.Context,
410
// responsible for that.
411
resp, err := m.cfg.StaticAddressServerClient.ServerWithdrawDeposits(
412
ctx, &staticaddressrpc.ServerWithdrawRequest{
413
- Outpoints: toPrevoutInfo(outpoints),
414
- ClientNonces: clientNonces,
415
- ClientWithdrawalAddr: withdrawalAddress.String(),
416
- WithdrawAmount: int64(withdrawAmount),
417
- ChangeAmount: int64(changeAmount),
+ Outpoints: toPrevoutInfo(outpoints),
+ ClientNonces: clientNonces,
+ ClientSweepAddr: withdrawalAddress.String(),
+ TxFeeRate: uint64(withdrawalSweepFeeRate),
+ WithdrawAmount: int64(withdrawAmount),
418
+ ChangeAmount: int64(changeAmount),
419
},
420
)
421
if err != nil {
0 commit comments