From b3aebcd78f70812e7cbd1ea048d6bd278c332f77 Mon Sep 17 00:00:00 2001 From: Dean Eigenmann <7621705+decanus@users.noreply.github.com> Date: Tue, 26 Nov 2024 10:34:29 +0100 Subject: [PATCH] fix type on reveal string -> integer (#3134) Co-authored-by: Felix Leupold --- crates/driver/openapi.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/driver/openapi.yml b/crates/driver/openapi.yml index 637b874e91..3ab710aa26 100644 --- a/crates/driver/openapi.yml +++ b/crates/driver/openapi.yml @@ -487,16 +487,16 @@ components: properties: solutionId: description: Id of the solution that should be executed. - type: string - example: "123" + type: integer + example: 123 submissionDeadlineLatestBlock: description: The last block number in which the solution TX can be included. type: integer example: 12345 auctionId: description: Auction ID in which the specified solution ID is competing. - type: string - example: "123" + type: integer + example: 123 RevealedResponse: description: Response of the reveal endpoint. type: object