Advertisement
sushi2k7

Hiddenpass stake unlock 1 year

Sep 17th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.47 KB | None | 0 0
  1. #!/bin/bash
  2. #This software is provided as is!
  3.  
  4. #To make this file executable, type:
  5. # chmod +x filename
  6.  
  7. #Lock wallet to prevent 'already unlocked' error
  8. StealthCoind walletlock
  9. echo "Wallet locked"
  10. echo "Enter Walletpassphrase (hidden): "
  11. read -s PASSPHRASE #read the users input but hide it (-s)
  12. StealthCoind walletpassphrase ${PASSPHRASE} 31536000 true #open the wallet for 31536000 seconds (365 days) for staking only
  13. echo "Wallet opened for staking (365 Days)"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement