From 05a0ee546a37899cb00f1bbe8a674665ccb6e55e 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 | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/massa-node/base_config/openrpc.json b/massa-node/base_config/openrpc.json index 733165dcd54..27d9848c707 100644 --- a/massa-node/base_config/openrpc.json +++ b/massa-node/base_config/openrpc.json @@ -1982,10 +1982,13 @@ "type": "object", "properties": { "candidate_value": { - "description": "", + "description": "The candidate datastore entry value bytes", "oneOf": [ { - "type": "string" + "type": "array", + "items": { + "type": "integer" + } }, { "type": "null" @@ -1993,10 +1996,13 @@ ] }, "final_value": { - "description": "", + "description": "The final datastore entry value bytes", "oneOf": [ { - "type": "string" + "type": "array", + "items": { + "type": "integer" + } }, { "type": "null"