Skip to content

Commit

Permalink
Temporarily use -fno-warn-deprecations for `Cardano.ProtocolParamet…
Browse files Browse the repository at this point in the history
…ers`

Proper fix can go in another PR and task.
  • Loading branch information
Anviking committed Jul 9, 2024
1 parent 5ee0e08 commit 1be0fb9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@

{-# OPTIONS_GHC -fno-warn-orphans #-}

-- TODO [ADP-3385] Stop using deprecated 'Cardano.ProtocolParameters'
--https://cardanofoundation.atlassian.net/browse/ADP-3385
{-# OPTIONS_GHC -fno-warn-deprecations #-}

module Internal.Cardano.Write.Tx.BalanceSpec
( spec
) where
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE NumericUnderscores #-}

-- TODO [ADP-3385] Stop using deprecated 'Cardano.ProtocolParameters'
--https://cardanofoundation.atlassian.net/browse/ADP-3385
{-# OPTIONS_GHC -fno-warn-deprecations #-}

module Cardano.Wallet.DummyTarget.Primitive.Types
( -- * Dummy values
block0
Expand Down
4 changes: 4 additions & 0 deletions lib/unit/test/unit/Cardano/Wallet/Shelley/TransactionSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@

{-# OPTIONS_GHC -fno-warn-orphans #-}

-- TODO [ADP-3385] Stop using deprecated 'Cardano.ProtocolParameters'
--https://cardanofoundation.atlassian.net/browse/ADP-3385
{-# OPTIONS_GHC -fno-warn-deprecations #-}

-- TODO: https://cardanofoundation.atlassian.net/browse/ADP-2841
{-# LANGUAGE CPP #-}
#if __GLASGOW_HASKELL__ >= 902
Expand Down

0 comments on commit 1be0fb9

Please sign in to comment.