Advertisement
Guest User

Untitled

a guest
Mar 25th, 2016
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. logtimestamps=1
  2.  
  3. server=1
  4. logtimestamps=1
  5. port=18333
  6. rpcport=18332
  7. rpcuser=bitcoinusername
  8. rpcpassword=bitcoinpassword
  9. rpcallowip=*
  10.  
  11. @echo off
  12. title p2pool
  13. echo.
  14. echo running p2pool ...
  15. echo.
  16. C:Python27python.exe "%programfiles%p2poolfolder-name-of-the-latest-current-p2pool-coderun_p2pool.py" --net bitcoin --address yourbitcoinaddresshere --bitcoind-address 127.0.0.1 --bitcoind-rpc-port 18332 --bitcoind-p2p-port 18333 bitcoinusername bitcoinpassword
  17. echo.
  18. echo p2pool stopped.
  19. echo.
  20. pause
  21.  
  22. @echo off
  23. title p2pool
  24. echo.
  25. echo running p2pool ...
  26. echo.
  27. C:Python27python.exe "%programfiles%p2poolforrestv-p2pool-4f6c2e2run_p2pool.py" --net bitcoin --address 12uN6G1uAtn7G29qfTdLD9des4y63Whr61 --bitcoind-address 127.0.0.1 --bitcoind-rpc-port 18332 --bitcoind-p2p-port 18333 bitcoinusername bitcoinpassword
  28. echo.
  29. echo p2pool stopped.
  30. echo.
  31. pause
  32.  
  33. @echo off
  34. title bitcoind
  35. echo.
  36. if exist "%programfiles%bitcoindaemonbitcoind.exe" (set programfilesx86=0)
  37. if exist "%programfiles(x86)%bitcoindaemonbitcoind.exe" (set programfilesx86=1)
  38. if %programfilesx86%==0 (goto :programfiles)
  39. if %programfilesx86%==1 (goto :programfilesx86)
  40. echo ERROR! bitcoind.exe not found in either "%programfiles%bitcoindaemon" or "%programfiles(x86)%bitcoindaemon" - giving up!
  41. echo.
  42. pause
  43. goto:eof
  44. :programfiles
  45. echo running bitcoind.exe from "%programfiles%Bitcoindaemon" ...
  46. "%programfiles%Bitcoindaemonbitcoind.exe" -datadir="%programfiles%p2poolbitcoind-data"
  47. echo.
  48. echo bitcoind stopped.
  49. echo.
  50. pause
  51. goto:eof
  52. :programfilesx86
  53. echo running bitcoind.exe from "%programfiles(x86)%Bitcoindaemon" ...
  54. "%programfiles(x86)%Bitcoindaemonbitcoind.exe" -datadir="%programfiles%p2poolbitcoind-data"
  55. echo.
  56. echo bitcoind stopped.
  57. echo.
  58. pause
  59.  
  60. Run "%programfiles%p2poolbitcoind.cmd"
  61. Run "%programfiles%p2poolp2pool.cmd"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement