I had a problem during a file plot generation the process has been end and the file plot was not complete.
Is it possible calculate basing an file dimensione the totale number of nonces and rename the file with this number ?
Will have some problem on mining pool ?
Thanks
Fabrizio
Hi, its possible in the linux system (using tool "truncate", maybe also in windows is similar program)
For example your corrupted plot file is 1234_0_7628800_3200 but it stopped somwhere in the halph
ll 1234_0_7628800_3200
-rwxrwxrwx 1 root root 999844146553 nov 19 03:23 1234_0_7628800_3200
calculate number of correctly created plots
999844146553/(256*1024*3200) = 1191.90710372090339660644
So you have 1191 finished plots
calculate size of finished plots
1191 *(256*1024*3200)=999083212800
truncate the file
truncate -s 999083212800 1234_0_7628800_3200
Calculate correct number of nonces
1191*3200 = 3811200
Rename the file to respect the correct number of nonces
mv 1234_0_7628800_3200 1234_0_3811200_3200
Profit! :-)