Skip to content

Commit

Permalink
fix openRPC spec
Browse files Browse the repository at this point in the history
  • Loading branch information
peterjah committed Oct 23, 2024
1 parent 07b093c commit 05a0ee5
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions massa-node/base_config/openrpc.json
Original file line number Diff line number Diff line change
Expand Up @@ -1982,21 +1982,27 @@
"type": "object",
"properties": {
"candidate_value": {
"description": "",
"description": "The candidate datastore entry value bytes",
"oneOf": [
{
"type": "string"
"type": "array",
"items": {
"type": "integer"
}
},
{
"type": "null"
}
]
},
"final_value": {
"description": "",
"description": "The final datastore entry value bytes",
"oneOf": [
{
"type": "string"
"type": "array",
"items": {
"type": "integer"
}
},
{
"type": "null"
Expand Down

0 comments on commit 05a0ee5

Please sign in to comment.