Skip to content

Commit 564c306

Browse files
committed
refactor(hbar): replace any types with unknown
CLOSES TICKET: WP-5746
1 parent 9fcf65e commit 564c306

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

modules/sdk-coin-hbar/src/hbar.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,9 @@ interface RawTransactionData {
7171
}>;
7272
};
7373
};
74-
// These are any[] because they're only used to verify existence, not to access contents
75-
instructions?: any[];
76-
innerInstructions?: any[];
77-
scheduledTransactionBody?: any;
74+
instructions?: unknown[];
75+
innerInstructions?: unknown[];
76+
scheduledTransactionBody?: unknown;
7877
}
7978
export interface HbarSignTransactionOptions extends SignTransactionOptions {
8079
txPrebuild: TransactionPrebuild;

0 commit comments

Comments
 (0)