Skip to content

Commit

Permalink
Resolve non-controversial PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisdral committed Mar 22, 2023
1 parent 13f6aaa commit dd4be44
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -350,9 +350,9 @@ instance ShelleyBasedHardForkConstraints proto1 era1 proto2 era2
mapLedgerTables f (ShelleyBasedHardForkLedgerTables x) = ShelleyBasedHardForkLedgerTables (f x)
traverseLedgerTables f (ShelleyBasedHardForkLedgerTables x) = ShelleyBasedHardForkLedgerTables <$> f x
zipLedgerTables f (ShelleyBasedHardForkLedgerTables l) (ShelleyBasedHardForkLedgerTables r) = ShelleyBasedHardForkLedgerTables (f l r)
zipLedgerTables2 f (ShelleyBasedHardForkLedgerTables l) (ShelleyBasedHardForkLedgerTables c) (ShelleyBasedHardForkLedgerTables r) = ShelleyBasedHardForkLedgerTables (f l c r)
zipLedgerTables3 f (ShelleyBasedHardForkLedgerTables l) (ShelleyBasedHardForkLedgerTables c) (ShelleyBasedHardForkLedgerTables r) = ShelleyBasedHardForkLedgerTables (f l c r)
zipLedgerTablesA f (ShelleyBasedHardForkLedgerTables l) (ShelleyBasedHardForkLedgerTables r) = ShelleyBasedHardForkLedgerTables <$> f l r
zipLedgerTables2A f (ShelleyBasedHardForkLedgerTables l) (ShelleyBasedHardForkLedgerTables c) (ShelleyBasedHardForkLedgerTables r) = ShelleyBasedHardForkLedgerTables <$> f l c r
zipLedgerTables3A f (ShelleyBasedHardForkLedgerTables l) (ShelleyBasedHardForkLedgerTables c) (ShelleyBasedHardForkLedgerTables r) = ShelleyBasedHardForkLedgerTables <$> f l c r
foldLedgerTables f (ShelleyBasedHardForkLedgerTables x) = f x
foldLedgerTables2 f (ShelleyBasedHardForkLedgerTables l) (ShelleyBasedHardForkLedgerTables r) = f l r
namesLedgerTables = ShelleyBasedHardForkLedgerTables { shelleyBasedHardForkUTxOTable = NameMK "shelleyBasedHardForkUTxOTable" }
Expand Down

0 comments on commit dd4be44

Please sign in to comment.