Skip to content

Commit fa3376b

Browse files
fix(sdk-core): deprecate displayOrder in ITransactionExplanation
I could not find any usage of displayOrder outside of tests. Our UI does not seem to depend on it. Issue: BTC-1450
1 parent 986e2f1 commit fa3376b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

modules/sdk-core/src/bitgo/baseCoin/iBaseCoin.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ export interface ITransactionFee<TAmount = string> {
8282
}
8383

8484
export interface ITransactionExplanation<TFee = any, TAmount = any> {
85-
displayOrder: string[];
85+
/** @deprecated */
86+
displayOrder?: string[];
8687
id: string;
8788
outputs: ITransactionRecipient[];
8889
outputAmount: TAmount;

0 commit comments

Comments
 (0)