We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cb20c0 commit 93fc522Copy full SHA for 93fc522
src/Bank/BankOptions.hs
@@ -87,7 +87,7 @@ commandParser =
87
command
88
"dump-state-old"
89
(info
90
- dumpStateOpts
+ dumpStateOldOpts
91
(progDesc "Dump current bank state to json in old format")))
92
where
93
mHost = strOption (long "host" <> help "Mintette's host" <> metavar "HOST")
@@ -124,6 +124,9 @@ commandParser =
124
dumpStateOpts =
125
DumpUtxo <$>
126
strOption (long "output-file" <> help "Output file for dump")
127
+ dumpStateOldOpts =
128
+ DumpUtxoOld <$>
129
+ strOption (long "output-file" <> help "Output file for dump")
130
131
optionsParser :: FilePath -> FilePath -> FilePath -> Parser Options
132
optionsParser defaultSKPath configDir defaultConfigPath =
0 commit comments