Skip to content

Commit 0b8a5f3

Browse files
committed
backend: add argument to force highest fee rate in tx proposal
Previously, the highest fee rate was automatically applied to all transaction proposals with a SLIP-24 payment request. For selling and spending integrations that do not use SLIP-24 payment requests, there should also be an option to trigger this same behaviour. This commit replaces the previous conditioning on payment requests with a general boolean field that is set independently and can be used for other integrations. This also allows setting a custom fee rate for transaction proposals with payment requests, if needed.
1 parent dbb7a5a commit 0b8a5f3

File tree

6 files changed

+8
-3
lines changed

6 files changed

+8
-3
lines changed

backend/accounts/account.go

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ type TxProposalArgs struct {
5858
SelectedUTXOs map[wire.OutPoint]struct{}
5959
Note string
6060
PaymentRequest *PaymentRequest
61+
UseHighestFee bool
6162
}
6263

6364
// Interface is the API of a Account.

backend/coins/btc/handlers/handlers.go

+2
Original file line numberDiff line numberDiff line change
@@ -454,6 +454,7 @@ func (input *sendTxInput) UnmarshalJSON(jsonBytes []byte) error {
454454
Note string `json:"note"`
455455
Counter int `json:"counter"`
456456
PaymentRequest *slip24Request `json:"paymentRequest"`
457+
UseHighestFee bool `json:"useHighestFee"`
457458
}{}
458459
if err := json.Unmarshal(jsonBytes, &jsonBody); err != nil {
459460
return errp.WithStack(err)
@@ -488,6 +489,7 @@ func (input *sendTxInput) UnmarshalJSON(jsonBytes []byte) error {
488489
}
489490
input.PaymentRequest = paymentRequest
490491
}
492+
input.UseHighestFee = jsonBody.UseHighestFee
491493
return nil
492494
}
493495

backend/coins/btc/transaction.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ const unitSatoshi = 1e8
3939
// fee target (priority) if one is given, or the provided args.FeePerKb if the fee taret is
4040
// `FeeTargetCodeCustom`.
4141
func (account *Account) getFeePerKb(args *accounts.TxProposalArgs) (btcutil.Amount, error) {
42-
isPaymentRequest := args.PaymentRequest != nil
43-
if args.FeeTargetCode == accounts.FeeTargetCodeCustom && !isPaymentRequest {
42+
if args.FeeTargetCode == accounts.FeeTargetCodeCustom && !args.UseHighestFee {
4443
float, err := strconv.ParseFloat(args.CustomFee, 64)
4544
if err != nil {
4645
return 0, err
@@ -60,7 +59,7 @@ func (account *Account) getFeePerKb(args *accounts.TxProposalArgs) (btcutil.Amou
6059
}
6160

6261
var feeTarget *FeeTarget
63-
if isPaymentRequest {
62+
if args.UseHighestFee {
6463
feeTarget = account.feeTargets().highest()
6564
} else {
6665
for _, target := range account.feeTargets() {

frontends/web/src/api/account.ts

+1
Original file line numberDiff line numberDiff line change
@@ -325,6 +325,7 @@ export type TTxInput = {
325325
sendAll: 'yes' | 'no';
326326
selectedUTXOs: string[];
327327
paymentRequest: Slip24 | null;
328+
useHighestFee: boolean;
328329
};
329330

330331
export type TTxProposalResult = {

frontends/web/src/routes/account/send/send.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ class Send extends Component<Props, State> {
165165
sendAll: (this.state.sendAll ? 'yes' : 'no'),
166166
selectedUTXOs: Object.keys(this.selectedUTXOs),
167167
paymentRequest: null,
168+
useHighestFee: false
168169
};
169170
};
170171

frontends/web/src/routes/exchange/pocket.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,7 @@ export const Pocket = ({ code, action }: TProps) => {
212212
sendAll: 'no',
213213
selectedUTXOs: [],
214214
paymentRequest: message.slip24,
215+
useHighestFee: true
215216
};
216217

217218
let result = await proposeTx(code, txInput);

0 commit comments

Comments
 (0)