From 3ef3a77f1bb5e1c5eb5f72ca65094895c4f64fa5 Mon Sep 17 00:00:00 2001 From: Jakub Zajkowski Date: Thu, 11 Apr 2024 14:18:04 +0200 Subject: [PATCH] Aligned test to changes from feat-2.0 --- resources/test/speculative_rpc_schema.json | 35 +++------------------- 1 file changed, 4 insertions(+), 31 deletions(-) diff --git a/resources/test/speculative_rpc_schema.json b/resources/test/speculative_rpc_schema.json index cdac6581..47f28473 100644 --- a/resources/test/speculative_rpc_schema.json +++ b/resources/test/speculative_rpc_schema.json @@ -3317,45 +3317,18 @@ }, "EntityAddr": { "description": "The address for an AddressableEntity which contains the 32 bytes and tagging information.", - "oneOf": [ + "anyOf": [ { "description": "The address for a system entity account or contract.", - "type": "object", - "required": [ - "System" - ], - "properties": { - "System": { - "type": "string" - } - }, - "additionalProperties": false + "type": "string" }, { "description": "The address of an entity that corresponds to an Account.", - "type": "object", - "required": [ - "Account" - ], - "properties": { - "Account": { - "type": "string" - } - }, - "additionalProperties": false + "type": "string" }, { "description": "The address of an entity that corresponds to a Userland smart contract.", - "type": "object", - "required": [ - "SmartContract" - ], - "properties": { - "SmartContract": { - "type": "string" - } - }, - "additionalProperties": false + "type": "string" } ] },