File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/Cardano/CLI/EraBased/Query Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff 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,
Original file line number Diff line number Diff line change @@ -1082,10 +1082,10 @@ getShelleyNodeToClientVersion era globalNtcVersion =
10821082 HardForkNodeToClientDisabled _ -> Left QueryCmdNodeToClientDisabled
10831083
10841084conwayIndex :: 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
10871087dijkstraIndex :: 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
10901090writeStakeAddressInfo
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
You can’t perform that action at this time.
0 commit comments