Merge pull request 'shibarium heimdall: fix REST listen flag (--laddr not --rest-server.addr)' (#17) from shibarium-heimdall-restflag into main
Reviewed-on: #17
This commit was merged in pull request #17.
This commit is contained in:
@@ -107,15 +107,17 @@ ct_seed_priv_validator_state "$CMT_HOME"
|
|||||||
|
|
||||||
ct_log "Bootstrap complete. Starting heimdalld..."
|
ct_log "Bootstrap complete. Starting heimdalld..."
|
||||||
|
|
||||||
# Start heimdalld with REST server enabled
|
# Start heimdalld with the in-process REST/LCD server enabled.
|
||||||
# --rest-server enables the in-process REST/LCD server
|
# --rest-server enables the REST/LCD server
|
||||||
# --rest-server.addr binds REST to 0.0.0.0:1317
|
# --laddr REST/LCD listen address (default tcp://0.0.0.0:1317) — NOT
|
||||||
# --rpc.laddr binds CometBFT RPC to 0.0.0.0:26657
|
# --rest-server.addr, which this heimdall build rejects as an
|
||||||
# --p2p.laddr binds P2P to 0.0.0.0:<P2P_PORT>
|
# "unknown flag".
|
||||||
|
# --rpc.laddr CometBFT RPC listen address (default is 127.0.0.1 — bind 0.0.0.0)
|
||||||
|
# --p2p.laddr P2P listen address on the salted P2P_PORT
|
||||||
exec heimdalld start \
|
exec heimdalld start \
|
||||||
--home "$CMT_HOME" \
|
--home "$CMT_HOME" \
|
||||||
--chain "$CHAIN" \
|
--chain "$CHAIN" \
|
||||||
--rest-server \
|
--rest-server \
|
||||||
--rest-server.addr=0.0.0.0:1317 \
|
--laddr=tcp://0.0.0.0:1317 \
|
||||||
--rpc.laddr=tcp://0.0.0.0:26657 \
|
--rpc.laddr=tcp://0.0.0.0:26657 \
|
||||||
--p2p.laddr=tcp://0.0.0.0:$P2P_PORT
|
--p2p.laddr=tcp://0.0.0.0:$P2P_PORT
|
||||||
|
|||||||
Reference in New Issue
Block a user