mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-09-08 03:29:45 +00:00
should make immature blocks confirmations more accurate and help to see which exchange slow down the cron task. also, orphan outdated blocks (one week)) from the db if the wallet is disabled
11 lines
155 B
Bash
Executable file
11 lines
155 B
Bash
Executable file
#!/bin/bash
|
|
|
|
alias php5='php -d max_execution_time=120'
|
|
|
|
cd /var/web
|
|
while true; do
|
|
php5 run.php cronjob/runLoop2
|
|
sleep 60
|
|
done
|
|
exec bash
|
|
|