Skip to content

Commit 5f5739d

Browse files
committed
Add missing qualifiers
1 parent fdc21f3 commit 5f5739d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cardano-node/src/Cardano/Node/Queries.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ instance (Ledger.EraAccounts era, Shelley.EraCertState era) => LedgerQueries (Sh
253253
)
254254
. Shelley.shelleyLedgerState
255255
ledgerDelegMapSize =
256-
foldl' (\acc -> maybe acc (const $ 1 + acc) . (^. Ledger.stakePoolDelegationAccountStateL)) 0
256+
Map.foldl' (\acc -> maybe acc (const $ 1 + acc) . (^. Ledger.stakePoolDelegationAccountStateL)) 0
257257
. (^. Shelley.nesEsL
258258
. Shelley.esLStateL
259259
. Shelley.lsCertStateL
@@ -274,7 +274,7 @@ instance Conway.ConwayEraCertState era => LedgerConwayQueries (Shelley.ShelleyBl
274274
)
275275
. Shelley.shelleyLedgerState
276276
ledgerDRepMapSize =
277-
foldl' (\acc -> maybe acc (const $ 1 + acc) . (^. Conway.dRepDelegationAccountStateL)) 0
277+
Map.foldl' (\acc -> maybe acc (const $ 1 + acc) . (^. Conway.dRepDelegationAccountStateL)) 0
278278
. (^. Shelley.nesEsL
279279
. Shelley.esLStateL
280280
. Shelley.lsCertStateL

0 commit comments

Comments
 (0)