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 33d71a3 commit 5395e13Copy full SHA for 5395e13
hydra-node/src/Hydra/Utils.hs
@@ -12,7 +12,6 @@ import System.FilePath ((<.>))
12
genHydraKeys :: GenerateKeyPair -> IO (Either (FileError ()) ())
13
genHydraKeys GenerateKeyPair{outputFile} = do
14
fileExists <- doesFileExist outputFile
15
- print fileExists
16
if fileExists
17
then
18
pure $
hydra-node/test/Hydra/UtilsSpec.hs
@@ -19,7 +19,6 @@ spec = do
19
withTempDir "gen-hydra-keys" $ \tmp -> do
20
writeFile (tmp </> "hydra") "hydra key"
21
result <- genHydraKeys (GenerateKeyPair $ tmp </> "hydra")
22
- print result
23
case result of
24
Left (_ :: FileError e) -> pure ()
25
Right _ -> expectationFailure "getHydraKeys should have failed with FileError"
0 commit comments