fix: add version 21 to the state-tree version switch

This commit is contained in:
Steven Allen
2023-02-24 14:58:58 -08:00
parent f0889d0bf0
commit 26fa56254f
+1 -1
View File
@@ -156,7 +156,7 @@ func VersionForNetwork(ver network.Version) (types.StateTreeVersion, error) {
case network.Version13, network.Version14, network.Version15, network.Version16, network.Version17:
return types.StateTreeVersion4, nil
case network.Version18, network.Version19, network.Version20:
case network.Version18, network.Version19, network.Version20, network.Version21:
return types.StateTreeVersion5, nil
default: