Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use NTC21
  • Loading branch information
jasagredo committed Jun 12, 2025
commit 6b3a991ee2712c1c8cc63f6ca89b27b846ff3a36
11 changes: 9 additions & 2 deletions cabal.project
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,15 @@ if impl (ghc >= 9.12)

source-repository-package
type: git
location: file://C:/Users/Javier/code/cardano/cardano-ledger
tag: d95fa77c1952b63d881a341ab6a9fc3bb515fd6d
location: https://github.com/IntersectMBO/ouroboros-network
tag: 3e8d3b4b8c87ead794876c62d7fe25f32efb5142
subdir:
ouroboros-network-api

source-repository-package
type: git
location: https://github.com/IntersectMBO/cardano-ledger
tag: acef8ca86b741455309753b1f02a5f339eb545b4
subdir:
eras/allegra/impl
eras/alonzo/impl
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ pattern CardanoNodeToClientVersion16 =
)

-- | The hard fork enabled, and the Shelley, Allegra, Mary, Alonzo and Babbage
-- and Conway eras enabled, using 'ShelleyNodeToClientVersion12' for the
-- and Conway eras enabled, using 'ShelleyNodeToClientVersion13' for the
-- Shelley-based eras.
pattern CardanoNodeToClientVersion17 :: BlockNodeToClientVersion (CardanoBlock c)
pattern CardanoNodeToClientVersion17 =
Expand Down Expand Up @@ -388,7 +388,7 @@ instance
, (NodeToClientV_18, CardanoNodeToClientVersion14)
, (NodeToClientV_19, CardanoNodeToClientVersion15)
, (NodeToClientV_20, CardanoNodeToClientVersion16)
, (NodeToClientV_20, CardanoNodeToClientVersion17)
, (NodeToClientV_21, CardanoNodeToClientVersion17)
]

latestReleasedNodeVersion _prx = (Just NodeToNodeV_14, Just NodeToClientV_20)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ instance SupportedNetworkProtocolVersion (ShelleyBlock proto era) where
, (NodeToClientV_18, ShelleyNodeToClientVersion10)
, (NodeToClientV_19, ShelleyNodeToClientVersion11)
, (NodeToClientV_20, ShelleyNodeToClientVersion12)
, (NodeToClientV_20, ShelleyNodeToClientVersion13)
, (NodeToClientV_21, ShelleyNodeToClientVersion13)
]

latestReleasedNodeVersion = latestReleasedNodeVersionDefault
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ nodeToClientVersionToQueryVersion x = case x of
NodeToClientV_18 -> QueryVersion2
NodeToClientV_19 -> QueryVersion2
NodeToClientV_20 -> QueryVersion3
NodeToClientV_21 -> QueryVersion3