diff --git a/scripts/linux/run_client.sh b/scripts/linux/run_client.sh index 717f454..62fc7c6 100755 --- a/scripts/linux/run_client.sh +++ b/scripts/linux/run_client.sh @@ -2,7 +2,7 @@ LOCALIP=192.168.178.138 BOOTSPR=spr:CiUIAhIhAteA6IVIcN3egB_1rPz3HpFKVVO4emfRRcRzvyf0ES11EgIDARo8CicAJQgCEiEC14DohUhw3d6AH_Ws_PcekUpVU7h6Z9FFxHO_J_QRLXUQlcfKswYaCwoJBMCosquRAh-aKkcwRQIhAPzHOsoFmh96SeuFPzErNeck9C-vOkWp74HpddLmM4zLAiBwvbCZDaeMRkmVRVxh24J8OEGGuHFUTWPHAL8T7e8GyQ ./codex-v0.1.0-linux-amd64 \ - --data-dir=data_bootstrap \ + --data-dir=data_client \ --storage-quota=11811160064 \ --nat=${LOCALIP} \ --api-port=8080 \ diff --git a/scripts/linux/run_host.sh b/scripts/linux/run_host.sh index e41ae1e..3eca484 100755 --- a/scripts/linux/run_host.sh +++ b/scripts/linux/run_host.sh @@ -5,7 +5,7 @@ BOOTSPR=$(curl http://localhost:8080/api/codex/v1/spr | cut -d '"' -f4) # Availability = 10 GB ./codex-v0.1.0-prover-linux-amd64 \ - --data-dir=data_storage \ + --data-dir=data_host \ --circuit-dir=circuit \ --storage-quota=11811160064 \ --nat=${LOCALIP} \ diff --git a/scripts/windows/run_client.bat b/scripts/windows/run_client.bat index a392724..d3c8b9e 100644 --- a/scripts/windows/run_client.bat +++ b/scripts/windows/run_client.bat @@ -2,7 +2,7 @@ set LOCALIP="192.168.178.138" set BOOTSPR="spr:CiUIAhIhAteA6IVIcN3egB_1rPz3HpFKVVO4emfRRcRzvyf0ES11EgIDARo8CicAJQgCEiEC14DohUhw3d6AH_Ws_PcekUpVU7h6Z9FFxHO_J_QRLXUQlcfKswYaCwoJBMCosquRAh-aKkcwRQIhAPzHOsoFmh96SeuFPzErNeck9C-vOkWp74HpddLmM4zLAiBwvbCZDaeMRkmVRVxh24J8OEGGuHFUTWPHAL8T7e8GyQ" start /b codex-v0.1.0-windows-amd64.exe ^ - --data-dir=data_bootstrap ^ + --data-dir=data_client ^ --storage-quota=11811160064 ^ --nat=%LOCALIP% ^ --api-port=8080 ^ diff --git a/scripts/windows/run_host.bat b/scripts/windows/run_host.bat index 5a6a652..a445bec 100644 --- a/scripts/windows/run_host.bat +++ b/scripts/windows/run_host.bat @@ -5,7 +5,7 @@ set BOOTSPR="UPDATE ME FROM BOOTSTRAP NODE" @REM Availability = 10 GB start /b codex-v0.1.0-prover-windows-amd64.exe ^ - --data-dir=data_storage ^ + --data-dir=data_host ^ --circuit-dir=circuit ^ --storage-quota=11811160064 ^ --nat=%LOCALIP% ^