@@ -75,7 +75,6 @@ import Cardano.Api.Internal.IPC.Version
7575import Cardano.Api.Internal.Keys.Shelley
7676import Cardano.Api.Internal.Modes
7777import Cardano.Api.Internal.NetworkId
78- import Cardano.Api.Internal.ProtocolParameters
7978import Cardano.Api.Internal.Query.Types
8079import Cardano.Api.Internal.ReexposeLedger qualified as Ledger
8180import Cardano.Api.Internal.Tx.Body
@@ -229,10 +228,6 @@ data QueryInShelleyBasedEra era result where
229228 :: QueryInShelleyBasedEra era (GenesisParameters ShelleyEra )
230229 QueryProtocolParameters
231230 :: QueryInShelleyBasedEra era (Ledger. PParams (ShelleyLedgerEra era ))
232- QueryProtocolParametersUpdate
233- :: QueryInShelleyBasedEra
234- era
235- (Map (Hash GenesisKey ) ProtocolParametersUpdate )
236231 QueryStakeDistribution
237232 :: QueryInShelleyBasedEra era (Map (Hash StakePoolKey ) Rational )
238233 QueryUTxO
@@ -312,7 +307,6 @@ instance NodeToClientVersionOf (QueryInShelleyBasedEra era result) where
312307 nodeToClientVersionOf QueryEpoch = NodeToClientV_16
313308 nodeToClientVersionOf QueryGenesisParameters = NodeToClientV_16
314309 nodeToClientVersionOf QueryProtocolParameters = NodeToClientV_16
315- nodeToClientVersionOf QueryProtocolParametersUpdate = NodeToClientV_16
316310 nodeToClientVersionOf QueryStakeDistribution = NodeToClientV_16
317311 nodeToClientVersionOf (QueryUTxO f) = nodeToClientVersionOf f
318312 nodeToClientVersionOf (QueryStakeAddresses _ _) = NodeToClientV_16
@@ -584,8 +578,6 @@ toConsensusQueryShelleyBased sbe = \case
584578 Some (consensusQueryInEraInMode era Consensus. GetGenesisConfig )
585579 QueryProtocolParameters ->
586580 Some (consensusQueryInEraInMode era Consensus. GetCurrentPParams )
587- QueryProtocolParametersUpdate ->
588- Some (consensusQueryInEraInMode era Consensus. GetProposedPParamsUpdates )
589581 QueryStakeDistribution ->
590582 Some (consensusQueryInEraInMode era Consensus. GetStakeDistribution )
591583 QueryUTxO QueryUTxOWhole ->
@@ -889,10 +881,6 @@ fromConsensusQueryResultShelleyBased sbe sbeQuery q' r' =
889881 case q' of
890882 Consensus. GetCurrentPParams -> r'
891883 _ -> fromConsensusQueryResultMismatch
892- QueryProtocolParametersUpdate ->
893- case q' of
894- Consensus. GetProposedPParamsUpdates -> fromLedgerProposedPPUpdates sbe r'
895- _ -> fromConsensusQueryResultMismatch
896884 QueryStakeDistribution ->
897885 case q' of
898886 Consensus. GetStakeDistribution -> fromShelleyPoolDistr r'
0 commit comments