gregorst

How to avoid Pool hoopers! Ultimate guide!

Oct 7th, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. Ultimate guide How to Avoid Pool Hoopers!
  2. Only for those who use DAKK POOL (https://github.com/dakk/lisk-pool/)
  3.  
  4. First of all let's check if you have the last version of liskpol.py
  5. Go in your rise POOL folder and do the following command:
  6.  
  7. wget -O liskpool.py https://github.com/dakk/lisk-pool/raw/master/liskpool.py
  8.  
  9. (Make sure you have config.json)
  10.  
  11.  
  12. Usually you run liskpool when you have to pay, now we are going to create a crontab every hour that will ONLY update payout and this will permit to avoid pool hoopers.
  13.  
  14. Now that you have last version, please download this file in your pool directory
  15.  
  16. wget -O hoopers.sh https://pastebin.com/raw/PmqKZakT
  17. sudo chmod +x hoopers.sh
  18.  
  19. Now we have to activate this file to run every hour
  20.  
  21.  
  22. sudo -i
  23. (we switch into root)
  24. crontab -e (use nano or similar)
  25.  
  26. and add at the end of the file the following line:
  27.  
  28. 0 * * * * cd /home/YOURUSERNAME/POOLDIRECTORY/ && bash ./hoopers.sh
  29.  
  30. and save the file
  31.  
  32.  
  33. YOURUSERNAME= user where you have the file pool
  34.  
  35. POOLDIRECTORY= directory where you have the pool files and where you saved hoopers.sh file
Add Comment
Please, Sign In to add comment