mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-09 12:49:23 +00:00
Updates our scripts to pass. Achieves POSIX compliance for `increase_default_stack_size.sh` via replacing `hexdump` with `od` and `tr`. Replaces the non-POSIX `dd status=none` with the POSIX `dd 2> /dev/null`.
11 lines
228 B
Bash
Executable File
11 lines
228 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
RPC_USER="${RPC_USER:=serai}"
|
|
RPC_PASS="${RPC_PASS:=seraidex}"
|
|
|
|
bitcoind -regtest --port=8333 \
|
|
-rpcuser="$RPC_USER" -rpcpassword="$RPC_PASS" \
|
|
-rpcbind=0.0.0.0 -rpcallowip=0.0.0.0/0 -rpcport=8332 \
|
|
"$@"
|