Skip to content

Commit b07e7b7

Browse files
committed
bumpfee: use new fields instead of deprecated ones
'force' -> 'immediate' 'sat_per_byte' -> 'sat_per_vbyte'
1 parent c5f2f9a commit b07e7b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

walletkit_client.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -755,8 +755,8 @@ func (m *walletKitClient) BumpFee(ctx context.Context, op wire.OutPoint,
755755
TxidBytes: op.Hash[:],
756756
OutputIndex: op.Index,
757757
},
758-
SatPerByte: uint32(feeRate.FeePerKVByte() / 1000),
759-
Force: false,
758+
SatPerVbyte: uint64(feeRate.FeePerKVByte() / 1000),
759+
Immediate: false,
760760
},
761761
)
762762
return err

0 commit comments

Comments
 (0)