Skip to content

Commit

Permalink
Fix type to be list of enums
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaptic committed May 14, 2024
1 parent 5a003e3 commit 9964423
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions openrpc/src/methods/simulateTransaction.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,9 @@
"items": {
"type": "object",
"properties": {
"^type$": {
"oneOf": [1, 2, 3],
"type": {
"type": "number",
"enum": [1, 2, 3],
"description": "Indicates if the entry was created (1), updated (2), or deleted (3)"
},
"key": {
Expand Down

0 comments on commit 9964423

Please sign in to comment.