8 lines
No EOL
247 B
Bash
8 lines
No EOL
247 B
Bash
#!/bin/bash
|
|
|
|
if [ $ENABLE_RPC == 1 ]
|
|
then
|
|
/app/bitcoind -datadir=/data -server -txindex=$TXINDEX -prune=$PRUNE -rest -rpcallowip=0.0.0.0 -rpcuser=$USER -rpcpassword=$PASS
|
|
else
|
|
/app/bitcoind -datadir=/data -txindex=$TXINDEX -prune=$PRUNE
|
|
fi |