File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
cardano-cli/src/Cardano/CLI/EraBased/Query Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ import Data.Aeson as Aeson
71
71
import Data.Aeson qualified as A
72
72
import Data.Aeson.Encode.Pretty (encodePretty )
73
73
import Data.Bifunctor (Bifunctor (.. ))
74
- import Data.ByteString.Base16 qualified as Base16
74
+ import Data.ByteString.Base16.Lazy qualified as Base16
75
75
import Data.ByteString.Char8 qualified as C8
76
76
import Data.ByteString.Lazy qualified as BS
77
77
import Data.ByteString.Lazy.Char8 qualified as LBS
@@ -1189,7 +1189,7 @@ writeFilteredUTxOs sbe format mOutFile utxo =
1189
1189
. writeLazyByteStringOutput mOutFile
1190
1190
$ format
1191
1191
& ( id
1192
- . Vary. on (\ FormatCbor -> LBS. fromStrict . Base16. encode . CBOR. serialize' $ toLedgerUTxO sbe utxo)
1192
+ . Vary. on (\ FormatCbor -> Base16. encode . CBOR. serialize $ toLedgerUTxO sbe utxo)
1193
1193
. Vary. on (\ FormatJson -> encodePretty utxo)
1194
1194
. Vary. on (\ FormatText -> strictTextToLazyBytestring $ filteredUTxOsToText sbe utxo)
1195
1195
$ Vary. exhaustiveCase
You can’t perform that action at this time.
0 commit comments