From cee5e543ff97b7f65baa52c5c7b32b0b0d8f66ae Mon Sep 17 00:00:00 2001 From: Peter Argue <89119817+peterargue@users.noreply.github.com> Date: Tue, 28 Jan 2025 09:16:17 -0800 Subject: [PATCH] [Access] Backport version control overrides from v0.37 --- engine/common/version/version_control.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/engine/common/version/version_control.go b/engine/common/version/version_control.go index 0c44aa47c0a..e26ab92ab3f 100644 --- a/engine/common/version/version_control.go +++ b/engine/common/version/version_control.go @@ -37,7 +37,12 @@ var NoHeight = uint64(0) // // IMPORTANT: only add versions to this list if you are certain that the cadence and fvm changes // deployed during the HCU are backwards compatible for scripts. -var defaultCompatibilityOverrides = map[string]struct{}{} +var defaultCompatibilityOverrides = map[string]struct{}{ + "0.37.17": {}, + "0.37.18": {}, + "0.37.22": {}, + "0.37.26": {}, +} // VersionControl manages the version control system for the node. // It consumes BlockFinalized events and updates the node's version control based on the latest version beacon.