From f82ae99fa1e7db985fc3e326ef944269931712a9 Mon Sep 17 00:00:00 2001 From: Thibault Martinez Date: Thu, 31 Oct 2024 12:37:12 +0100 Subject: [PATCH 1/2] chore(scripts): run update_all_snapshots.sh --- crates/iota-core/tests/staged/iota.yaml | 2 +- crates/iota-rest-api/openapi/openapi.json | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/crates/iota-core/tests/staged/iota.yaml b/crates/iota-core/tests/staged/iota.yaml index 7a2a28721f5..1d2cd9c0734 100644 --- a/crates/iota-core/tests/staged/iota.yaml +++ b/crates/iota-core/tests/staged/iota.yaml @@ -453,7 +453,7 @@ ExecutionFailureStatus: 29: CertificateDenied: UNIT 30: - IotaMoveVerificationTimedout: UNIT + IotaMoveVerificationTimeout: UNIT 31: SharedObjectOperationNotAllowed: UNIT 32: diff --git a/crates/iota-rest-api/openapi/openapi.json b/crates/iota-rest-api/openapi/openapi.json index b787b05bdb7..0a59da60bdf 100644 --- a/crates/iota-rest-api/openapi/openapi.json +++ b/crates/iota-rest-api/openapi/openapi.json @@ -2602,7 +2602,7 @@ "error": { "type": "string", "enum": [ - "iota_move_verification_timedout" + "iota_move_verification_timeout" ] } } @@ -4394,10 +4394,17 @@ { "type": "object", "required": [ + "events", "kind", "objects" ], "properties": { + "events": { + "type": "array", + "items": { + "$ref": "#/components/schemas/Event" + } + }, "kind": { "type": "string", "enum": [ From ac59b0b72f6b81f9ac8e559a365678023aea5ff7 Mon Sep 17 00:00:00 2001 From: Thibault Martinez Date: Thu, 31 Oct 2024 13:57:21 +0100 Subject: [PATCH 2/2] exec_failure_status --- crates/iota-types/tests/staged/exec_failure_status.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/iota-types/tests/staged/exec_failure_status.yaml b/crates/iota-types/tests/staged/exec_failure_status.yaml index 5ddf42a34da..00e684c3fa7 100644 --- a/crates/iota-types/tests/staged/exec_failure_status.yaml +++ b/crates/iota-types/tests/staged/exec_failure_status.yaml @@ -29,7 +29,7 @@ 27: PackageUpgradeError 28: WrittenObjectsTooLarge 29: CertificateDenied -30: IotaMoveVerificationTimedout +30: IotaMoveVerificationTimeout 31: SharedObjectOperationNotAllowed 32: InputObjectDeleted 33: ExecutionCancelledDueToSharedObjectCongestion