From 619dfb261a80b790b0ea4b79fde591a07e69e72d Mon Sep 17 00:00:00 2001 From: Pierre Seznec Date: Mon, 23 Sep 2024 15:42:09 +0200 Subject: [PATCH] fix openRPC spec --- massa-node/base_config/openrpc.json | 28 ++++++++++------------------ 1 file changed, 10 insertions(+), 18 deletions(-) diff --git a/massa-node/base_config/openrpc.json b/massa-node/base_config/openrpc.json index 733165dcd54..b2274b6cf65 100644 --- a/massa-node/base_config/openrpc.json +++ b/massa-node/base_config/openrpc.json @@ -1982,26 +1982,18 @@ "type": "object", "properties": { "candidate_value": { - "description": "", - "oneOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ] + "description": "The candidate datastore entry value bytes", + "type": "array", + "items": { + "type": "integer" + } }, "final_value": { - "description": "", - "oneOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ] + "description": "The final datastore entry value bytes", + "type": "array", + "items": { + "type": "integer" + } } }, "additionalProperties": false