mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-09 04:39:24 +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`.
9 lines
270 B
Bash
Executable File
9 lines
270 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
monero-wallet-rpc \
|
|
--allow-mismatched-daemon-version \
|
|
--daemon-address serai-dev-monero:18081 --daemon-login serai:seraidex \
|
|
--disable-rpc-login --rpc-bind-ip=0.0.0.0 --rpc-bind-port 18082 --confirm-external-bind \
|
|
--wallet-dir /home/monero
|