service: use new --portal-rpc-url flag

Replaces old badly named `rpc-address` and `rpc-port`.
https://github.com/status-im/nimbus-eth1/pull/2437

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2024-07-02 11:45:42 +02:00
parent d1772970de
commit 4f72fd214f
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
2 changed files with 4 additions and 6 deletions

View File

@ -29,10 +29,9 @@ portal_bridge_group: 'staff'
# General
portal_bridge_command: 'beacon' # beacon, history, state
portal_bridge_log_level: 'INFO' # TRACE DEBUG INFO NOTICE WARN ERROR FATAL NONE
portal_bridge_rpc_address: '127.0.0.1'
portal_bridge_rpc_port: 8545
#portal_bridge_portal_rpc_url: 'http://127.0.0:8545
# beacon
portal_bridge_rest_url: 'http://127.0.0.1:5052'
#portal_bridge_rest_url: 'http://127.0.0.1:5052'
portal_bridge_backfill_amount: 64
# history
#portal_bridge_web3_url: ~
@ -42,7 +41,7 @@ portal_bridge_backfill: false
portal_bridge_audit: true
portal_bridge_era1_dir: '{{ portal_bridge_service_path }}/era'
# state
portal_bridge_web3_url: 'https://127.0.0.1:8545'
#portal_bridge_web3_url: 'https://127.0.0.1:5052'
# Consul service definition settings
portal_bridge_consul_service_name: 'nimbus-portal-bridge'

View File

@ -14,8 +14,7 @@ SyslogLevel=debug
Restart=on-failure
ExecStart={{ portal_bridge_binary_path }} \
--log-level={{ portal_bridge_log_level | upper }} \
--rpc-address={{ portal_bridge_rpc_address }} \
--rpc-port={{ portal_bridge_rpc_port }} \
--portal-rpc-url={{ portal_bridge_portal_rpc_url }} \
{% if portal_bridge_command == "beacon" %}
beacon \
--rest-url={{ portal_bridge_rest_url | mandatory }} \