From 96168fca200ece851f1b79359f8c7cda5d6ff960 Mon Sep 17 00:00:00 2001 From: Leigh McCulloch <351529+leighmcculloch@users.noreply.github.com> Date: Wed, 13 Jul 2022 13:25:03 -0700 Subject: [PATCH] Fix contract spec definitions after rename --- Stellar-contract-spec.x | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Stellar-contract-spec.x b/Stellar-contract-spec.x index 92fb5eb..8a2a997 100644 --- a/Stellar-contract-spec.x +++ b/Stellar-contract-spec.x @@ -73,7 +73,7 @@ struct SCSpecTypeUDT string name<60>; }; -union SCSpecTypeDef switch (SpecType type) +union SCSpecTypeDef switch (SCSpecType type) { case SC_SPEC_TYPE_U64: case SC_SPEC_TYPE_I64: @@ -140,7 +140,7 @@ enum SCSpecEntryKind SC_SPEC_ENTRY_UDT_UNION_V0 = 2 }; -union SCSpecEntry switch (SpecEntryKind kind) +union SCSpecEntry switch (SCSpecEntryKind kind) { case SC_SPEC_ENTRY_FUNCTION_V0: SCSpecFunctionV0 functionV0;