Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
iKapitonau committed Dec 16, 2024
1 parent 578a424 commit 6fa7e34
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions deployment/ci/bootstrap_init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ secretd init-bootstrap
secretd genesis validate

# Setup LCD
perl -i -pe 's;address = "tcp://0.0.0.0:1317";address = "tcp://0.0.0.0:1316";' ~/.secretd/config/app.toml
perl -i -pe 's/enable-unsafe-cors = false/enable-unsafe-cors = true/' ~/.secretd/config/app.toml
perl -i -pe 's/concurrency = false/concurrency = true/' ~/.secretd/config/app.toml
perl -i -pe 's;address = "tcp://localhost:1317";address = "tcp://0.0.0.0:1317";' ~/.secretd/config/app.toml
cat ~/.secretd/config/app.toml

source /opt/sgxsdk/environment && RUST_BACKTRACE=1 secretd start --rpc.laddr tcp://0.0.0.0:26657 --bootstrap
2 changes: 1 addition & 1 deletion deployment/ci/docker-compose.ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ services:
expose:
- 26656
- 26657
- 1316
- 1317

node-no-tests:
image: azcr.io/enigmampc/ci-node-image:latest
Expand Down
2 changes: 1 addition & 1 deletion deployment/ci/query-load-test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const fs = require("fs");

const initial_token_amount = "100000";

const ENDPOINT = process.env["ENDPOINT"] || "http://bootstrap:1316";
const ENDPOINT = process.env["ENDPOINT"] || "http://bootstrap:1317";
const CHAIN_ID = "secretdev-1";

const c_mnemonic =
Expand Down

0 comments on commit 6fa7e34

Please sign in to comment.