Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
eyeinsky committed Dec 2, 2022
1 parent f2fe33d commit 99723db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions marconi/src/Marconi/CLI.hs
Expand Up @@ -150,7 +150,7 @@ utxoDbPath :: Options -> Maybe FilePath
utxoDbPath o = if optionsDisableUtxo o then Nothing; else Just (optionsDbPath o </> utxoDbName)

datumDbPath :: Options -> Maybe FilePath
datumDbPath o = if optionsDisableUtxo o then Nothing; else Just (optionsDbPath o </> datumDbName)
datumDbPath o = if optionsDisableDatum o then Nothing; else Just (optionsDbPath o </> datumDbName)

scriptTxDbPath :: Options -> Maybe FilePath
scriptTxDbPath o = if optionsDisableUtxo o then Nothing; else Just (optionsDbPath o </> scriptTxDbName)
scriptTxDbPath o = if optionsDisableScript o then Nothing; else Just (optionsDbPath o </> scriptTxDbName)

0 comments on commit 99723db

Please sign in to comment.