Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
85 changes: 43 additions & 42 deletions cabal.project
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,48 @@ repository cardano-haskell-packages
c00aae8461a256275598500ea0e187588c35a5d5d7454fb57eac18d9edb86a56
d4a35cd3121aa00d18544bb0ac01c3e1691d618f462c46129271bccf39f7e8ee

source-repository-package
type: git
location: https://github.com/IntersectMBO/ouroboros-network
tag: 3e8d3b4b8c87ead794876c62d7fe25f32efb5142
--sha256: sha256-uKrxpHhcNGzKUSeA4zIdkslfDFIJjkCsHUg+FUef1yE=
subdir:
ouroboros-network-api

source-repository-package
type: git
location: https://github.com/IntersectMBO/cardano-ledger
tag: 651e1dd0a43422f01ca43e5ae0ead587e748ccf5
--sha256: sha256-5cIcFcsvbMwpNQBrothZQC4j+rWjMK3vqPC4lntZ+4c=
subdir:
eras/allegra/impl
eras/alonzo/impl
eras/alonzo/test-suite
eras/babbage/impl
eras/babbage/test-suite
eras/byron/chain/executable-spec
eras/byron/crypto
eras/byron/ledger/executable-spec
eras/byron/ledger/impl
eras/conway/impl
eras/conway/test-suite
eras/dijkstra
eras/mary/impl
eras/shelley/impl
eras/shelley-ma/test-suite
eras/shelley/test-suite
libs/cardano-data
libs/cardano-ledger-api
libs/cardano-ledger-binary
libs/cardano-ledger-core
libs/cardano-ledger-test
libs/cardano-protocol-tpraos
libs/constrained-generators
libs/non-integral
libs/set-algebra
libs/small-steps
libs/vector-map

-- See CONTRIBUTING for some Nix commands you will need to run if you
-- update either of these.
index-state:
Expand Down Expand Up @@ -55,45 +97,4 @@ if impl (ghc >= 9.12)
, ouroboros-network:base

-- https://github.com/kapralVV/Unique/issues/11
, Unique:hashable

source-repository-package
type: git
location: https://github.com/IntersectMBO/ouroboros-network
tag: 3e8d3b4b8c87ead794876c62d7fe25f32efb5142
--sha256: 08fpkx3iagj83nn413h9a865zjcj3lrf7017a756qd2wg2jg3amq
subdir:
ouroboros-network-api

source-repository-package
type: git
location: https://github.com/IntersectMBO/cardano-ledger
tag: b44ce911475794a15f908ad27a6f497d6a27e8ba
--sha256: sha256-MXaVKKH9siUsmOnJmYyL6if48dx11zugux7AWGPABfA=
subdir:
eras/allegra/impl
eras/alonzo/impl
eras/alonzo/test-suite
eras/babbage/impl
eras/babbage/test-suite
eras/byron/chain/executable-spec
eras/byron/crypto
eras/byron/ledger/executable-spec
eras/byron/ledger/impl
eras/conway/impl
eras/conway/test-suite
eras/mary/impl
eras/shelley/impl
eras/shelley-ma/test-suite
eras/shelley/test-suite
libs/cardano-data
libs/cardano-ledger-api
libs/cardano-ledger-binary
libs/cardano-ledger-core
libs/cardano-ledger-test
libs/cardano-protocol-tpraos
libs/constrained-generators
libs/non-integral
libs/set-algebra
libs/small-steps
libs/vector-map
, Unique:hashable

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -562,12 +562,20 @@ protocolInfoCardano paramsCardano
, shelleyBasedLeaderCredentials = credssShelleyBased
} = shelleyBasedProtocolParams

transitionConfigShelley :: L.TransitionConfig ShelleyEra
transitionConfigShelley = transitionConfigAllegra ^. L.tcPreviousEraConfigL
transitionConfigAllegra :: L.TransitionConfig AllegraEra
transitionConfigAllegra = transitionConfigMary ^. L.tcPreviousEraConfigL
transitionConfigMary :: L.TransitionConfig MaryEra
transitionConfigMary = transitionConfigAlonzo ^. L.tcPreviousEraConfigL
transitionConfigAlonzo :: L.TransitionConfig AlonzoEra
transitionConfigAlonzo = transitionConfigBabbage ^. L.tcPreviousEraConfigL
transitionConfigBabbage :: L.TransitionConfig BabbageEra
transitionConfigBabbage = transitionConfigConway ^. L.tcPreviousEraConfigL
transitionConfigConway = cardanoLedgerTransitionConfig
transitionConfigConway :: L.TransitionConfig ConwayEra
transitionConfigConway = transitionConfigDijkstra ^. L.tcPreviousEraConfigL
transitionConfigDijkstra :: L.TransitionConfig L.DijkstraEra
transitionConfigDijkstra = cardanoLedgerTransitionConfig

-- The major protocol version of the last era is the maximum major protocol
-- version we support.
Expand Down
Loading