mirror of
https://github.com/tornadocash/rpc-nodes
synced 2024-02-02 14:53:56 +01:00
11 lines
343 B
Bash
Executable File
11 lines
343 B
Bash
Executable File
#!/bin/sh
|
|
set -x
|
|
|
|
if [ ! -f /bsc/config/setupdone ]; then
|
|
wget -O /bsc/mainnet.zip "https://github.com/bnb-chain/bsc/releases/download/${BSC_TAG}/mainnet.zip"
|
|
unzip -o -j /bsc/mainnet.zip "mainnet/genesis.json" -d /bsc/config/
|
|
bsc --datadir /bsc/.ethereum init /bsc/config/genesis.json
|
|
touch /bsc/config/setupdone
|
|
fi
|
|
|
|
exec "$@" |