Skip to content

Commit

Permalink
Bump latest supported o-network protocol versions
Browse files Browse the repository at this point in the history
  • Loading branch information
crocodile-dentist committed Oct 11, 2024
1 parent e9a9971 commit d6fd467
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,7 @@ instance CardanoHardForkConstraints c
=> SupportedNetworkProtocolVersion (CardanoBlock c) where
supportedNodeToNodeVersions _ = Map.fromList $
[ (NodeToNodeV_13, CardanoNodeToNodeVersion2)
, (NodeToNodeV_14, CardanoNodeToNodeVersion2)
]

supportedNodeToClientVersions _ = Map.fromList $
Expand All @@ -493,7 +494,7 @@ instance CardanoHardForkConstraints c
, (NodeToClientV_18, CardanoNodeToClientVersion14)
]

latestReleasedNodeVersion _prx = (Just NodeToNodeV_13, Just NodeToClientV_17)
latestReleasedNodeVersion _prx = (Just NodeToNodeV_14, Just NodeToClientV_18)

{-------------------------------------------------------------------------------
ProtocolInfo
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ instance HasNetworkProtocolVersion (ShelleyBlock proto era) where
-- TODO #2668 make this era-specific
instance SupportedNetworkProtocolVersion (ShelleyBlock proto era) where
supportedNodeToNodeVersions _ = Map.fromList [
(NodeToNodeV_13, ShelleyNodeToNodeVersion1)
(NodeToNodeV_13, ShelleyNodeToNodeVersion1)
, (NodeToNodeV_14, ShelleyNodeToNodeVersion1)
]
supportedNodeToClientVersions _ = Map.fromList [
(NodeToClientV_9, ShelleyNodeToClientVersion5)
Expand Down

0 comments on commit d6fd467

Please sign in to comment.