Update 0g.sh
This commit is contained in:
parent
a093d619f1
commit
40cd500fff
10
0g.sh
10
0g.sh
@ -83,8 +83,6 @@ function install_node() {
|
||||
cd $HOME
|
||||
0gchaind init $MONIKER --chain-id zgtendermint_16600-1
|
||||
0gchaind config chain-id zgtendermint_16600-1
|
||||
0gchaind config node tcp://localhost:13457
|
||||
|
||||
|
||||
# 配置节点
|
||||
rm ~/.0gchain/config/genesis.json
|
||||
@ -97,6 +95,14 @@ function install_node() {
|
||||
sed -i "s/persistent_peers = \"\"/persistent_peers = \"$PEERS\"/" $HOME/.0gchain/config/config.toml
|
||||
sed -i "s/seeds = \"\"/seeds = \"$SEEDS\"/" $HOME/.0gchain/config/config.toml
|
||||
|
||||
# 配置裁剪
|
||||
sed -i -e "s/^pruning *=.*/pruning = \"custom\"/" $HOME/.artelad/config/app.toml
|
||||
sed -i -e "s/^pruning-keep-recent *=.*/pruning-keep-recent = \"100\"/" $HOME/.0gchain/config/app.toml
|
||||
sed -i -e "s/^pruning-keep-every *=.*/pruning-keep-every = \"0\"/" $HOME/.0gchain/config/app.toml
|
||||
sed -i -e "s/^pruning-interval *=.*/pruning-interval = \"10\"/" $HOME/.0gchain/config/app.toml
|
||||
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.0gchain/config/config.toml
|
||||
sed -i -e 's/max_num_inbound_peers = 40/max_num_inbound_peers = 100/' -e 's/max_num_outbound_peers = 10/max_num_outbound_peers = 100/' $HOME/.0gchain/config/config.toml
|
||||
|
||||
# 配置端口
|
||||
node_address="tcp://localhost:13457"
|
||||
sed -i -e "s%^proxy_app = \"tcp://127.0.0.1:26658\"%proxy_app = \"tcp://127.0.0.1:13458\"%; s%^laddr = \"tcp://127.0.0.1:26657\"%laddr = \"tcp://127.0.0.1:13457\"%; s%^pprof_laddr = \"localhost:6060\"%pprof_laddr = \"localhost:13460\"%; s%^laddr = \"tcp://0.0.0.0:26656\"%laddr = \"tcp://0.0.0.0:13456\"%; s%^prometheus_listen_addr = \":26660\"%prometheus_listen_addr = \":13466\"%" $HOME/.0gchain/config/config.toml
|
||||
|
Loading…
Reference in New Issue
Block a user