Modernize Qt dependency path
This commit is contained in:
@@ -54,17 +54,18 @@ EOF
|
||||
-rpcbind=127.0.0.1 -rpcport="$RPCPORT" -port="$PORT" -keypool=1 -daemon
|
||||
|
||||
for _ in $(seq 1 "$WAIT_SECONDS"); do
|
||||
if rpc getinfo >/dev/null 2>&1; then
|
||||
if rpc getwalletinfo >/dev/null 2>&1; then
|
||||
break
|
||||
fi
|
||||
sleep 1
|
||||
done
|
||||
|
||||
if ! rpc getinfo >/dev/null; then
|
||||
echo "Timed out waiting for RPC on 127.0.0.1:$RPCPORT" >&2
|
||||
if ! rpc getwalletinfo >/dev/null; then
|
||||
echo "Timed out waiting for wallet RPC on 127.0.0.1:$RPCPORT" >&2
|
||||
tail -n 80 "$DATADIR/regtest/debug.log" >&2 || true
|
||||
exit 1
|
||||
fi
|
||||
rpc getinfo >/dev/null
|
||||
rpc getwalletinfo >/dev/null
|
||||
rpc getmininginfo >/dev/null
|
||||
rpc getstakingstatus >/dev/null
|
||||
|
||||
Reference in New Issue
Block a user