still not working my wallet is stuck now for 9 days
What happened? Did you download the bootstrap.dat file? Did you put it in the same folder as your CLAM wallet.dat? Did you restart the CLAM client? Did the bootstrap.dat file end up getting renamed? Is there anything unusual in your debug.log file? What block are you stuck at?
yeah i tried everything only option left is deleting all files and try again but that takes many time then on my computer is use for this wallet.. im stuck at block 899544
edit: and i have 9 active contections and it says its staking.. what normal not happens when wallet is not sync
I don't think you could have used the latest bootstrap.dat file if it ended up getting renamed yet you're stuck at 899544.
Concatenating
https://s3.amazonaws.com/dooglus/bootstrap-089.dat and
https://s3.amazonaws.com/dooglus/bootstrap-090.dat into bootstrap.dat in your data folder and restarting will get you past the point you're stuck at.
Wrote myself up a simple bash script to use your bootstrap files. Don't know if it was posted before but here it is.
Change the values:
clamdir= //to your Clam datadirectory
start= //the partial file you wish to start at
end= //partial file you wish to end at
#!/bin/bash
clamdir=~/.clam
start=65
end=90
cd $clamdir
for i in `seq $start $end`; do
wget https://s3.amazonaws.com/dooglus/bootstrap-0$i.dat
cat bootstrap-0$i.dat >> bootstrap.dat
rm bootstrap-0$i.dat
done
echo Download Complete :D