Skip to content

Commit 6a5600f

Browse files
authored
Fix the path when running with HYDRA_BACKEND set (#2216)
The path was definitely wrong; but I think the tests still fail. -- edit: You can see the tests still fail: https://github.com/cardano-scaling/hydra/actions/runs/17374716893/job/49318370147
2 parents fad7660 + 74e2f0c commit 6a5600f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hydra-cluster/src/CardanoNode.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ withBlockfrostBackend ::
169169
withBlockfrostBackend _tracer stateDirectory action = do
170170
args <- setupCardanoDevnet stateDirectory
171171
shelleyGenesis <- readFileBS >=> unsafeDecodeJson $ stateDirectory </> nodeShelleyGenesisFile args
172-
let backend = BlockfrostBackend $ BlockfrostOptions{projectPath = ".." </> Backend.blockfrostProjectPath}
172+
let backend = BlockfrostBackend $ BlockfrostOptions{projectPath = Backend.blockfrostProjectPath}
173173
action (getShelleyGenesisBlockTime shelleyGenesis) backend
174174

175175
withBackend ::

0 commit comments

Comments
 (0)