Skip to content

Commit

Permalink
move dbs out of tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
Shramp authored and hummingalpaca committed Apr 4, 2023
1 parent c277676 commit d41d07e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions scripts/mobilecoind-mainnet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ cd ../mobilecoin
SGX_MODE=HW IAS_MODE=PROD CONSENSUS_ENCLAVE_CSS=$(pwd)/consensus-enclave.css \
MC_LOG=debug,rustls=warn,hyper=warn,tokio_reactor=warn,mio=warn,want=warn,rusoto_core=error,h2=error,reqwest=error \
cargo run --release -p mc-mobilecoind -- \
--ledger-db /tmp/ledger-db/ \
--watcher-db /tmp/watcher-db/ \
--mobilecoind-db /tmp/mobilecoind-db/ \
--ledger-db ~/Documents/data/ledger-db/ \
--watcher-db ~/Documents/data/watcher-db/ \
--mobilecoind-db ~/Documents/mobilecoind-db/ \
--poll-interval 1 \
--peer mc://node1.prod.mobilecoinww.com/ \
--peer mc://node2.prod.mobilecoinww.com/ \
Expand Down
2 changes: 1 addition & 1 deletion scripts/start-http-server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ MC_LOG=mc_reserve_auditor=info cargo run --release \
-p mc-reserve-auditor -- \
start-http-server \
--gnosis-safe-config ../gnosis-safe.json \
--reserve-auditor-db /tmp/auditor-db \
--reserve-auditor-db ~/Documents/data/auditor-db \
6 changes: 3 additions & 3 deletions scripts/start-scanning-layer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ MC_LOG=mc_reserve_auditor=info cargo run --release \
-p mc-reserve-auditor -- \
scan-ledger \
--gnosis-safe-config ../gnosis-safe.json \
--ledger-db /tmp/ledger-db \
--reserve-auditor-db /tmp/auditor-db \
--watcher-db /tmp/watcher-db/ \
--ledger-db ~/Documents/data/ledger-db \
--reserve-auditor-db ~/Documents/data/auditor-db \
--watcher-db ~/Documents/data/watcher-db/ \

0 comments on commit d41d07e

Please sign in to comment.