Advertisement
Guest User

Garlicoin easy wallet check

a guest
Jan 23rd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. @ECHO off
  2. title Check Garlicoin
  3. color 0a
  4.  
  5. :start
  6. echo Type W for balance, B for blockheight, C for connections
  7. echo or A for all info. Leave blank to exit.
  8. set /p pick=Enter here:
  9. if /I %pick%==W goto balance
  10. if /I %pick%==B goto blocks
  11. if /I %pick%==C goto connections
  12. if /I %pick%==A goto all
  13. goto end
  14.  
  15. :balance
  16. cls
  17. echo.
  18. garlicoin-cli getwalletinfo | find "balance"
  19. echo.
  20. set pick=e
  21. goto start
  22.  
  23. :blocks
  24. cls
  25. echo.
  26. garlicoin-cli getinfo | find "blocks"
  27. echo.
  28. set pick=e
  29. goto start
  30.  
  31. :connections
  32. cls
  33. echo.
  34. garlicoin-cli getinfo | find "connections"
  35. echo.
  36. set pick=e
  37. goto start
  38.  
  39. :all
  40. cls
  41. echo.
  42. garlicoin-cli getinfo
  43. garlicoin-cli getwalletinfo
  44. echo.
  45. set pick=e
  46. goto start
  47.  
  48. :end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement