Skip to content

Commit fbec2d0

Browse files
committed
Address lints and fix formatting
1 parent a9ee2b9 commit fbec2d0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

cardano-cli/cardano-cli.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,7 @@ library
271271
http-client-tls,
272272
http-types,
273273
io-classes,
274+
io-classes:strict-stm,
274275
iproute,
275276
microlens,
276277
mmorph,
@@ -286,7 +287,6 @@ library
286287
rio,
287288
sop-extras,
288289
split,
289-
io-classes:strict-stm,
290290
text,
291291
time,
292292
transformers,

cardano-cli/src/Cardano/CLI/EraBased/Query/Run.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1082,10 +1082,10 @@ getShelleyNodeToClientVersion era globalNtcVersion =
10821082
HardForkNodeToClientDisabled _ -> Left QueryCmdNodeToClientDisabled
10831083

10841084
conwayIndex :: Index (x'1 : x'2 : x'3 : x'4 : x'5 : x'6 : x : xs1) x
1085-
conwayIndex = (IS (IS (IS (IS (IS (IS IZ))))))
1085+
conwayIndex = IS (IS (IS (IS (IS (IS IZ)))))
10861086

10871087
dijkstraIndex :: Index (x'1 : x'2 : x'3 : x'4 : x'5 : x'6 : x'7 : x : xs1) x
1088-
dijkstraIndex = (IS (IS (IS (IS (IS (IS (IS IZ)))))))
1088+
dijkstraIndex = IS (IS (IS (IS (IS (IS (IS IZ))))))
10891089

10901090
writeStakeAddressInfo
10911091
:: StakeAddressInfoData
@@ -1256,7 +1256,7 @@ filteredUTxOsToText (UTxO utxo) = do
12561256
mconcat
12571257
[ Text.unlines [title, Text.replicate (Text.length title + 2) "-"]
12581258
, Text.unlines $
1259-
map (utxoToText) $
1259+
map utxoToText $
12601260
toList utxo
12611261
]
12621262
where

0 commit comments

Comments
 (0)