Ok wow so I just "dug" for some clams in my old wallets and got a nice chunk of clams. Pretty happy but got some questions for any fellow clammers.
1. Is there a max age for POS or have the coins I just dug up and never moved just got TONS of age and will find a POS block real fast?
2. Is there any fast way to import the private keys from a .csv file like electrum produces? I know the importprivkey command but got a few hundred to try
so faster approach would be nice.
3. I'm sure if I looked hard enuf I could find it but any recent bootstrap file so I can speed the network syncing?
Thanks!
1. Age doesn't matter. Coins need to have not been involved in a transaction for 4 hours, and need to be mature (ie. 500 blocks since last stake), but that's all. Being older doesn't give you extra chance of staking. Each 4.6 CLAM output that you dug up has an expected time-to-stake of about 10 days. If you dug up 10 of them, you should see about 1 stake per day. Etc.
2. Write a loop to import the private keys. Use 'false' to tell it not to rescan the blockchain after importing each one:
$ cat file.txt | while read key; do clamd importprivkey $key label false; done
(assuming the format is one private key per line; if not you'll need to add other filters to the pipeline)
3.
https://bitcointalksearch.org/topic/m.9772191If you wait 10 minutes from the time on this post, it'll be updated to block 611800.