Skip to content

Commit

Permalink
fix: mark an optional field as optional in TonClient v2
Browse files Browse the repository at this point in the history
  • Loading branch information
krigga authored May 10, 2024
1 parent 4095a1e commit 97caf01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/api/HttpApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const message = z.object({
created_lt: z.string(),
body_hash: z.string(),
msg_data: messageData,
message: z.string()
message: z.string().optional()
});

const transaction = z.object({
Expand Down

0 comments on commit 97caf01

Please sign in to comment.