mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-09-18 00:19:43 +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
12 lines
156 B
Bash
Executable file
12 lines
156 B
Bash
Executable file
#!/bin/bash
|
|
|
|
alias php5='php -d max_execution_time=60'
|
|
|
|
cd /var/web
|
|
while true; do
|
|
php5 run.php cronjob/runBlocks
|
|
sleep 20
|
|
done
|
|
exec bash
|
|
|
|
|