2021-11-15 13:48:19 +02:00
|
|
|
#!/usr/bin/env bash
|
2020-11-06 00:33:31 +02:00
|
|
|
|
2021-02-02 23:31:01 +01:00
|
|
|
# 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.
|
|
|
|
|
2020-11-07 14:00:57 +02:00
|
|
|
cd "$(dirname $0)"
|
2021-01-20 19:58:58 +01:00
|
|
|
# Allow the binary to receive signals directly.
|
2022-06-28 22:49:52 +02:00
|
|
|
exec scripts/run-beacon-node.sh nimbus_beacon_node mainnet "$@"
|
2020-11-06 00:33:31 +02:00
|
|
|
|