mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-16 13:00:37 +02:00
staticaddr: re-add feeRate to withdrawal request
This commit is contained in:
parent
ca9acf3074
commit
c1c809d729
1 changed files with 6 additions and 5 deletions
|
|
@ -410,11 +410,12 @@ func (m *Manager) createFinalizedWithdrawalTx(ctx context.Context,
|
|||
// responsible for that.
|
||||
resp, err := m.cfg.StaticAddressServerClient.ServerWithdrawDeposits(
|
||||
ctx, &staticaddressrpc.ServerWithdrawRequest{
|
||||
Outpoints: toPrevoutInfo(outpoints),
|
||||
ClientNonces: clientNonces,
|
||||
ClientWithdrawalAddr: withdrawalAddress.String(),
|
||||
WithdrawAmount: int64(withdrawAmount),
|
||||
ChangeAmount: int64(changeAmount),
|
||||
Outpoints: toPrevoutInfo(outpoints),
|
||||
ClientNonces: clientNonces,
|
||||
ClientSweepAddr: withdrawalAddress.String(),
|
||||
TxFeeRate: uint64(withdrawalSweepFeeRate),
|
||||
WithdrawAmount: int64(withdrawAmount),
|
||||
ChangeAmount: int64(changeAmount),
|
||||
},
|
||||
)
|
||||
if err != nil {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue