Commit ad8f8adb authored by Andreas Bigger's avatar Andreas Bigger

Fix datadir check missing game prefix

parent 6e2e9b5c
...@@ -179,5 +179,5 @@ func (h *Helper) VerifyNoGameDataExists(games ...GameAddr) { ...@@ -179,5 +179,5 @@ func (h *Helper) VerifyNoGameDataExists(games ...GameAddr) {
} }
func (h *Helper) gameDataDir(addr common.Address) string { func (h *Helper) gameDataDir(addr common.Address) string {
return filepath.Join(h.dir, addr.Hex()) return filepath.Join(h.dir, "game-"+addr.Hex())
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment