Skip to content

Commit 5395e13

Browse files
committed
Remove print statement
1 parent 33d71a3 commit 5395e13

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

hydra-node/src/Hydra/Utils.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import System.FilePath ((<.>))
1212
genHydraKeys :: GenerateKeyPair -> IO (Either (FileError ()) ())
1313
genHydraKeys GenerateKeyPair{outputFile} = do
1414
fileExists <- doesFileExist outputFile
15-
print fileExists
1615
if fileExists
1716
then
1817
pure $

hydra-node/test/Hydra/UtilsSpec.hs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ spec = do
1919
withTempDir "gen-hydra-keys" $ \tmp -> do
2020
writeFile (tmp </> "hydra") "hydra key"
2121
result <- genHydraKeys (GenerateKeyPair $ tmp </> "hydra")
22-
print result
2322
case result of
2423
Left (_ :: FileError e) -> pure ()
2524
Right _ -> expectationFailure "getHydraKeys should have failed with FileError"

0 commit comments

Comments
 (0)