You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
IMPORTANT
Check https://github.com/dashpay/tenderdash to see whether it's actually master or something else, like v0.14-dev, that's the current working "main" branch.
sed -i 's/\(^moniker.*\)/#\1/'~/.tenderdash/config/config.toml
# this WILL NOT work# (it seems that `timeout_commit` is no longer a valid key - nor is `timeout-commit`)#sed -i 's/^timeout_commit.*/timeout_commit = "500ms"/' ~/.tenderdash/config/config.toml# this must use dashes rather than underscores# sed -i 's/^create_empty_blocks_interval.*/create_empty_blocks_interval = "3m"/' ~/.tenderdash/config/config.toml# DO this instead
sed -i 's/^create-empty-blocks-interval.*/create-empty-blocks-interval = "3m"/'~/.tenderdash/config/config.toml
# these all work as expected
sed -i 's/^namespace.*/namespace = "drive_tendermint"/'~/.tenderdash/config/config.toml
sed -i 's/^bootstrap-peers.*/bootstrap-peers = "[email protected]:36656,[email protected]:36656"/'~/.tenderdash/config/config.toml
sed -i 's/^core-rpc-host.*/core-rpc-host = "localhost:19998"/'~/.tenderdash/config/config.toml
My preference is not to install GO from a random online shell script, but rather to go to the source and then install it where ever I choose, since it is not required beyond building tenderdash, I install it to /tmp and after the build I longer refer to it. IMO these instructions reduce the clarity of what we are trying to do here and that's less desirable.
However, I can see how someone who is more advanced like you and knows how to fix the permission issues caused by the .pkg installer and how to put things in the correct FHS dirs and add it to the PATH would want to do it manually. These instructions are ones that anyone could follow - without having to learn the peculiarities of Go, for example. And they work in containers, Docker, etc.
For updating https://github.com/dashpay/docs/blob/20.0.0/docs/user/masternodes/setup-testnet.rst
Overview
Table of Contents
System Requirements
Pre-Reqs
curl -sS https://webi.sh/go | sh
Build Tenderdash
IMPORTANT
Check https://github.com/dashpay/tenderdash to see whether it's actually
master
or something else, likev0.14-dev
, that's the current working "main" branch.Config
Install as a service
The text was updated successfully, but these errors were encountered: