Skip to content

Commit

Permalink
scripts: Expose simapp tendermint on 26658
Browse files Browse the repository at this point in the history
  • Loading branch information
willclarktech committed Nov 10, 2020
1 parent 3bbcd63 commit eb4238c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion HACKING.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,4 @@ order to avoid conflicts. Here is an overview of the ports used:
| 4445 | socketserver slow | @cosmjs/sockets tests |
| 11133 | Tendermint 0.33 RPC | @cosmjs/tendermint-rpc tests |
| 11134 | Tendermint 0.34 RPC | @cosmjs/tendermint-rpc tests ([soon™](https://github.com/CosmWasm/cosmjs/issues/344)) |
| 26657 | simapp Tendermint RPC | Stargate client tests |
| 26658 | simapp Tendermint RPC | Stargate client tests |
6 changes: 3 additions & 3 deletions packages/stargate/src/testutils.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ export function makeRandomAddress(): string {
}

export const simapp = {
tendermintUrl: "localhost:26657",
tendermintUrlWs: "ws://localhost:26657",
tendermintUrlHttp: "http://localhost:26657",
tendermintUrl: "localhost:26658",
tendermintUrlWs: "ws://localhost:26658",
tendermintUrlHttp: "http://localhost:26658",
chainId: "simd-testing",
denomStaking: "ustake",
denomFee: "ucosm",
Expand Down
2 changes: 1 addition & 1 deletion scripts/simapp/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ command -v shellcheck > /dev/null && shellcheck "$0"

# Please keep this in sync with the Ports overview in HACKING.md
TENDERMINT_PORT_GUEST="26657"
TENDERMINT_PORT_HOST="26657"
TENDERMINT_PORT_HOST="26658"
API_PORT_GUEST="1317"
API_PORT_HOST="1318"

Expand Down

0 comments on commit eb4238c

Please sign in to comment.