Skip to content

Commit e8aa5f1

Browse files
committed
frontend: remove unused type
Removed unused account type which was added in: - efce945 The proposeTx api was typed in: - 19c27ed So it looks like IProposeTxData was never used.
1 parent 4d8e1bb commit e8aa5f1

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

frontends/web/src/api/account.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -368,16 +368,6 @@ export const sendTx = (
368368

369369
export type FeeTargetCode = 'custom' | 'low' | 'economy' | 'normal' | 'high' | 'mHour' | 'mHalfHour' | 'mFastest';
370370

371-
export type TProposeTxData = {
372-
address?: string;
373-
amount?: number;
374-
// data?: string;
375-
feePerByte: string;
376-
feeTarget: FeeTargetCode;
377-
selectedUTXOs: string[];
378-
sendAll: 'yes' | 'no';
379-
}
380-
381371
export type TFeeTarget = {
382372
code: FeeTargetCode;
383373
feeRateInfo: string;

0 commit comments

Comments
 (0)