Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: tm 0.34 changes #12221

Merged
merged 29 commits into from
Jul 5, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
updates
  • Loading branch information
alexanderbez committed Jul 4, 2022
commit aa71c25c8181fe0582beafd4e3d456c0068b3b9f
2 changes: 1 addition & 1 deletion contrib/rosetta/configuration/data.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ sed -i 's/127.0.0.1/0.0.0.0/g' /root/.simapp/config/config.toml

# start simd
echo starting simd...
simd start --pruning=nothing --mode validator &
simd start --pruning=nothing &
pid=$!
echo simd started with PID $pid

Expand Down
36 changes: 26 additions & 10 deletions contrib/rosetta/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,17 @@ version: "3"
services:
cosmos:
image: rosetta-ci:latest
command: ["simd", "start","--mode","validator", "--pruning", "nothing", "--grpc-web.enable", "true", "--grpc-web.address", "0.0.0.0:9091"]
command:
[
"simd",
"start",
"--pruning",
"nothing",
"--grpc-web.enable",
"true",
"--grpc-web.address",
"0.0.0.0:9091"
]
ports:
- 9090:9090
- 26657:26657
Expand All @@ -12,15 +22,21 @@ services:

rosetta:
image: rosetta-ci:latest
command: [
"simd",
"rosetta",
"--blockchain", "app",
"--network", "network",
"--tendermint", "cosmos:26657",
"--grpc", "cosmos:9090",
"--addr", ":8080",
]
command:
[
"simd",
"rosetta",
"--blockchain",
"app",
"--network",
"network",
"--tendermint",
"cosmos:26657",
"--grpc",
"cosmos:9090",
"--addr",
":8080"
]
ports:
- 8080:8080

Expand Down
Binary file modified contrib/rosetta/rosetta-ci/data.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/run-node/run-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ One example config to tweak is the `minimum-gas-prices` field inside `app.toml`,
Now that everything is set up, you can finally start your node:

```bash
simd start --mode validator
simd start
```

> Note: By default nodes are run in full node mode. Running a local network means in most cases, the node is the only node in the network, requiring you to set the mode.
Expand Down