mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-09 13:56:23 +00:00
ff12c7f9ce
* remove web3 url prompt in launcher script The interactive prompt for web3 has outlived its utility as we now load url:s from command line params and config files, preventing the prompt from correctly detecting when it's needed. Also, after the merge, a JWT secret will (likely) be needed. * log notice when web3 url is missing * fix docs to not mention default that doesn't exist * fix scripts to properly quote arguments
14 lines
399 B
Bash
Executable File
14 lines
399 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2020-2021 Status Research & Development GmbH. Licensed under
|
|
# either of:
|
|
# - Apache License, version 2.0
|
|
# - MIT license
|
|
# at your option. This file may not be copied, modified, or distributed except
|
|
# according to those terms.
|
|
|
|
cd "$(dirname $0)"
|
|
# Allow the binary to receive signals directly.
|
|
exec scripts/run-beacon-node.sh nimbus_beacon_node mainnet "$@"
|
|
|