Hi there.
When using Clam-qt i have the option to unlock the wallet "for staking only".
What would be the equivalent for clamd?
Is it: "walletpassphrase passphrase 9999999 true" ?
Furthermore, if i stake with the option "for staking only", will it execute the "splitsize=X" command in clam.conf? Or does that only work if the wallet is unlocked completely?
Thank you for answering and thank you to everyone continue working on this project!
Yes, the
true at the end of the command unlocks it only for staking.
I have this in .bashrc
stake()
{
echo -n "Enter password: "
read -s PASS; ~/cli walletpassphrase "$PASS" 8640000 true
PASS=""
}
cli is symlink to clamd