Handle config update for ostype Darwin
All checks were successful
Build / build (pull_request) Successful in 2m23s
Lint / Run golangci-lint (pull_request) Successful in 4m55s
Integration Tests / test-integration (pull_request) Successful in 2m43s
E2E Tests / test-e2e (pull_request) Successful in 4m18s
Unit Tests / test-unit (pull_request) Successful in 2m26s
SDK Tests / sdk_tests_nameservice_expiry (pull_request) Successful in 9m31s
SDK Tests / sdk_tests (pull_request) Successful in 10m34s
SDK Tests / sdk_tests_auctions (pull_request) Successful in 15m0s

This commit is contained in:
Prathamesh Musale 2024-04-11 11:40:14 +05:30
parent 0a6105b97b
commit 7aa5ec428d

View File

@ -67,9 +67,15 @@ if [ "$1" == "clean" ] || [ ! -d "$HOME/.laconicd/data/blockstore.db" ]; then
fi
# Enable telemetry (prometheus metrics: http://localhost:1317/metrics?format=prometheus)
if [[ "$OSTYPE" == "darwin"* ]]; then
sed -i '' 's/enabled = false/enabled = true/g' $HOME/.laconicd/config/app.toml
sed -i '' 's/prometheus-retention-time = 0/prometheus-retention-time = 60/g' $HOME/.laconicd/config/app.toml
sed -i '' 's/prometheus = false/prometheus = true/g' $HOME/.laconicd/config/config.toml
else
sed -i 's/enabled = false/enabled = true/g' $HOME/.laconicd/config/app.toml
sed -i 's/prometheus-retention-time = 0/prometheus-retention-time = 60/g' $HOME/.laconicd/config/app.toml
sed -i 's/prometheus = false/prometheus = true/g' $HOME/.laconicd/config/config.toml
fi
# Allocate genesis accounts (cosmos formatted addresses)
laconicd genesis add-genesis-account $KEY 100000000000000000000000000photon --keyring-backend $KEYRING