Skip to content

Commit 0a1be72

Browse files
committed
Added missing translations
1 parent d819e74 commit 0a1be72

File tree

18 files changed

+139
-45
lines changed

18 files changed

+139
-45
lines changed

eras/conway/impl/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22

33
## 1.20.0.0
44

5+
* Remove era parametrization from `GovPurposeId`, `GovRelation`
56
* Add `ReferenceInputsNotDisjointFromInputs`
6-
- Remove `ConwayNewEpochPredFailure` and replace it with `Void`. #5007
7+
* Remove `ConwayNewEpochPredFailure` and replace it with `Void`. #5007
78
* Added to `PParams`: `ppCommitteeMaxTermLength`,`ppCommitteeMinSize`,`ppDRepActivity`,`ppDRepDeposit`,`ppDRepVotingThresholds`,`ppGovActionDeposit`,`ppGovActionLifetime`,`ppGovProtocolVersion`,`ppMinFeeRefScriptCostPerByte`,`ppPoolVotingThresholds`
89
* Moved `ConwayEraPlutusTxInfo` class from `Context` module to `TxInfo`
910
* Removed `Cardano.Ledger.Conway.Plutus.Context` module

eras/conway/impl/src/Cardano/Ledger/Conway/Governance.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ module Cardano.Ledger.Conway.Governance (
164164
reCommitteeStateL,
165165
DefaultVote (..),
166166
defaultStakePoolVote,
167+
translateProposals,
167168

168169
-- * Exported for testing
169170
pparamsUpdateThreshold,

eras/conway/impl/src/Cardano/Ledger/Conway/TxBody.hs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ module Cardano.Ledger.Conway.TxBody (
4747
ConwayTxBodyRaw (..),
4848
conwayTotalDepositsTxBody,
4949
conwayProposalsDeposits,
50+
conwayRedeemerPointer,
51+
conwayRedeemerPointerInverse,
5052
) where
5153

5254
import Cardano.Ledger.Alonzo.TxBody (Indexable (..))

eras/conway/impl/test/Main.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ main =
3232
Spec.spec
3333
Proposals.spec
3434
Binary.spec
35-
Cddl.spec
35+
Cddl.spec @ConwayEra
3636
DRepRatify.spec
3737
CommitteeRatify.spec
3838
SPORatifySpec.spec

eras/dijkstra/cardano-ledger-dijkstra.cabal

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -50,18 +50,9 @@ library
5050
Cardano.Ledger.Dijkstra.Rules.Cert
5151
Cardano.Ledger.Dijkstra.Rules.Certs
5252
Cardano.Ledger.Dijkstra.Rules.Deleg
53-
Cardano.Ledger.Dijkstra.Rules.Enact
54-
Cardano.Ledger.Dijkstra.Rules.Epoch
5553
Cardano.Ledger.Dijkstra.Rules.Gov
56-
Cardano.Ledger.Dijkstra.Rules.GovCert
57-
Cardano.Ledger.Dijkstra.Rules.HardFork
5854
Cardano.Ledger.Dijkstra.Rules.Ledger
5955
Cardano.Ledger.Dijkstra.Rules.Ledgers
60-
Cardano.Ledger.Dijkstra.Rules.Mempool
61-
Cardano.Ledger.Dijkstra.Rules.NewEpoch
62-
Cardano.Ledger.Dijkstra.Rules.Pool
63-
Cardano.Ledger.Dijkstra.Rules.Ratify
64-
Cardano.Ledger.Dijkstra.Rules.Tickf
6556
Cardano.Ledger.Dijkstra.Rules.Utxo
6657
Cardano.Ledger.Dijkstra.Rules.Utxos
6758
Cardano.Ledger.Dijkstra.Rules.Utxow

eras/dijkstra/src/Cardano/Ledger/Dijkstra/Rules.hs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,9 @@ import Cardano.Ledger.Dijkstra.Rules.Bbody ()
1212
import Cardano.Ledger.Dijkstra.Rules.Cert ()
1313
import Cardano.Ledger.Dijkstra.Rules.Certs ()
1414
import Cardano.Ledger.Dijkstra.Rules.Deleg ()
15-
import Cardano.Ledger.Dijkstra.Rules.Enact ()
16-
import Cardano.Ledger.Dijkstra.Rules.Epoch ()
1715
import Cardano.Ledger.Dijkstra.Rules.Gov ()
18-
import Cardano.Ledger.Dijkstra.Rules.GovCert ()
19-
import Cardano.Ledger.Dijkstra.Rules.HardFork ()
2016
import Cardano.Ledger.Dijkstra.Rules.Ledger ()
2117
import Cardano.Ledger.Dijkstra.Rules.Ledgers ()
22-
import Cardano.Ledger.Dijkstra.Rules.Mempool ()
23-
import Cardano.Ledger.Dijkstra.Rules.NewEpoch ()
24-
import Cardano.Ledger.Dijkstra.Rules.Pool ()
25-
import Cardano.Ledger.Dijkstra.Rules.Ratify ()
26-
import Cardano.Ledger.Dijkstra.Rules.Tickf ()
2718
import Cardano.Ledger.Dijkstra.Rules.Utxo ()
2819
import Cardano.Ledger.Dijkstra.Rules.Utxos ()
2920
import Cardano.Ledger.Dijkstra.Rules.Utxow ()

eras/dijkstra/src/Cardano/Ledger/Dijkstra/Rules/Enact.hs

Lines changed: 0 additions & 1 deletion
This file was deleted.

eras/dijkstra/src/Cardano/Ledger/Dijkstra/Rules/Epoch.hs

Lines changed: 0 additions & 1 deletion
This file was deleted.

eras/dijkstra/src/Cardano/Ledger/Dijkstra/Rules/GovCert.hs

Lines changed: 0 additions & 1 deletion
This file was deleted.

eras/dijkstra/src/Cardano/Ledger/Dijkstra/Rules/HardFork.hs

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)