Skip to content

Commit d67c409

Browse files
committed
fix(express): removed optional from partial type
Ticket: WP-6630
1 parent de4eddd commit d67c409

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/express/src/typedRoutes/api/v2/coinSignTx.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -174,11 +174,11 @@ export const HalfSignedAccountTransactionResponse = t.type({
174174
halfSigned: t.partial({
175175
// Generic account-based coin fields
176176
/** Transaction in hex format (used by most account coins) */
177-
txHex: optional(t.string),
177+
txHex: t.string,
178178
/** Transaction payload (used by some account coins) */
179-
payload: optional(t.string),
179+
payload: t.string,
180180
/** Transaction in base64 format (used by some account coins) */
181-
txBase64: optional(t.string),
181+
txBase64: t.string,
182182

183183
// Additional EVM-specific fields (superset)
184184
/** Transaction recipients (EVM) */

0 commit comments

Comments
 (0)