Skip to content

Commit 93fc522

Browse files
committed
Fix
1 parent 3cb20c0 commit 93fc522

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Bank/BankOptions.hs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ commandParser =
8787
command
8888
"dump-state-old"
8989
(info
90-
dumpStateOpts
90+
dumpStateOldOpts
9191
(progDesc "Dump current bank state to json in old format")))
9292
where
9393
mHost = strOption (long "host" <> help "Mintette's host" <> metavar "HOST")
@@ -124,6 +124,9 @@ commandParser =
124124
dumpStateOpts =
125125
DumpUtxo <$>
126126
strOption (long "output-file" <> help "Output file for dump")
127+
dumpStateOldOpts =
128+
DumpUtxoOld <$>
129+
strOption (long "output-file" <> help "Output file for dump")
127130

128131
optionsParser :: FilePath -> FilePath -> FilePath -> Parser Options
129132
optionsParser defaultSKPath configDir defaultConfigPath =

0 commit comments

Comments
 (0)