Skip to content

Commit 3e87709

Browse files
committed
Fix build
1 parent aa400cc commit 3e87709

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ in rec
128128
meta = { };
129129
buildInputs = deps;
130130
buildPhase = ''
131-
agda --profile=modules src/CardanoLedger.agda | tee typecheck.log
131+
agda --profile=modules src/Ledger/Conway.agda | tee typecheck.log
132132
'';
133133
doCheck = true;
134134
checkPhase = ''

src/Ledger/Conway.agda

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
module CardanoLedger where
1+
module Ledger.Conway where
22

3-
import CardanoLedgerSafe
3+
import Ledger.ConwaySafe
44

55
import Ledger.Conway.Foreign.HSLedger
66

src/Ledger/Conway/Epoch.lagda

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ open import Ledger.Conway.Enact govStructure
3232
open import Ledger.Conway.Gov txs
3333
open import Ledger.Conway.Ledger txs abs
3434
open import Ledger.Conway.Ratify txs
35-
open import Ledger.Conway.Rewards govStructure
35+
open import Ledger.Conway.Rewards txs abs
3636
open import Ledger.Conway.Utxo txs abs
3737

3838
\end{code}

src/Ledger/Conway/Epoch/Properties.agda

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ open import Ledger.Conway.Epoch txs abs
1616
open import Ledger.Conway.Ledger txs abs
1717
open import Ledger.Conway.Ratify txs
1818
open import Ledger.Conway.Ratify.Properties txs
19+
open import Ledger.Conway.Rewards txs abs
1920

2021
open import Data.List using (filter)
2122
import Relation.Binary.PropositionalEquality as PE

src/Ledger/Conway/Rewards.lagda

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ open import Ledger.Conway.Types.Numeric.UnitInterval
2020
open import Agda.Builtin.FromNat
2121
open Number number renaming (fromNat to fromℕ)
2222

23-
module Ledger.Rewards
23+
module Ledger.Conway.Rewards
2424
(txs : _) (open TransactionStructure txs)
2525
(abs : AbstractFunctions txs)
2626
where

0 commit comments

Comments
 (0)