Skip to content

Commit f514deb

Browse files
committed
frontend: add missing feetarget types
Since the BitBoxApp uses mempool.space as default fee estimator, these types were missing. Commit that introduced mempool.space fee estimator: - bd52d93
1 parent 01d9fa5 commit f514deb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontends/web/src/api/account.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2021-2024 Shift Crypto AG
2+
* Copyright 2021-2025 Shift Crypto AG
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -364,7 +364,7 @@ export const sendTx = (
364364
return apiPost(`account/${code}/sendtx`, txNote);
365365
};
366366

367-
export type FeeTargetCode = 'custom' | 'low' | 'economy' | 'normal' | 'high';
367+
export type FeeTargetCode = 'custom' | 'low' | 'economy' | 'normal' | 'high' | 'mHour' | 'mHalfHour' | 'mFastest';
368368

369369
export interface IProposeTxData {
370370
address?: string;

0 commit comments

Comments
 (0)