We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This type is defined in cardano-config/src/Cardano/Config/Types.hs as:
cardano-config/src/Cardano/Config/Types.hs
data RequireNetworkMagic = RequireNetworkMagic | NoRequireNetworkMagic deriving (Eq, Show)
but is close to identical to this from cardano-ledger:
cardano-ledger
data RequiresNetworkMagic = RequiresNoMagic | RequiresMagic deriving (Show, Eq, Generic, NFData, NoUnexpectedThunks)
Its a huge pain in the neck have two type that are completely isomorphic.
RequireNetworkMagic has to die and be replaced by the one from ledger
RequireNetworkMagic
ledger
The text was updated successfully, but these errors were encountered:
Probably also worth checking if there are any other types like this that mirror types lower in the dependency stack and kill them at the same time.
Sorry, something went wrong.
Not a priority for this weeks' snapshot but should do it early next week.
fromProtocol
Removed in #326
No branches or pull requests
This type is defined in
cardano-config/src/Cardano/Config/Types.hs
as:but is close to identical to this from
cardano-ledger
:Its a huge pain in the neck have two type that are completely isomorphic.
RequireNetworkMagic
has to die and be replaced by the one fromledger
The text was updated successfully, but these errors were encountered: