Post
Topic
Board Announcements (Altcoins)
Re: Official Anoncoin chat thread (including history)
by
Cryptoslave
on 17/01/2016, 15:15:16 UTC
Where can I get the latest wallet?

You can build by yourself gr_develop, which was recently patched for a header first synchronisation bug and addrman issue; and which is the best version currently available https://wiki.anoncoin.net/How_to_build_Anoncoin_develop

Alternatively here is a link to the win64 executable from my website: www.cryptoslave.com/yo/anoncoin-0.9.6.9-0e35c18-win64-setup.exe

It is stable for mining, but I cannot vouch for commercial use...

CS

BTW, now there are two qt version: qtc (classic) and qtt (themes)

qtt does not work for win64 due to Qt issue, so you can only run anoncoin-qtc; and at the end of setup it will not run even if asked, because the setup is still configured for anoncoin-qt, which does not exist anymore..

Secondly, it may seems to not advance in block synchronisation from scratch, if you look at bottom on main wallet GUI. But in fact it does! You can check the advance in the Help - Debug window - Network Traffic tab.

At first, headers are downloaded and proof of work are verified, this takes lots of computing power and only 50 MB of bandwidth. During this time you will see little spike in the network traffic, from only one peer, but almost no block synchronisation as that thread is not run alot during this time.





After a couple of hours it will finish to process the headers then will start to download all the blocks in parallel from all connected peers. At this point the blocks number will increase in the main wallet GUI as well as the bandwidth usage in Network Traffic.





If you want to know how far the headers are downloaded, type this in console (Help - Debug window - Console)

Code:
getchaintips

-> you will see the valid headers downloaded and the active chain (+ forks)

Code:
getchaintips

[

{

"height" : 412000,

"hash" : "000000000160e830e869cdc4cf2087e2af9c3364f5282e92436b25237008952d",

"shad" : "b01e9c8c6adcced33c9fce9ab75a728081c8ab6d62f1d9086868660bf36d40a5",

"branchlen" : 408736,

"status" : "headers-only"

},

{

"height" : 3264,

"hash" : "000000f8ae79a8b640b3ab89fb2ff87a8a544acf72cb8e0790966b208c33fcb1",

"shad" : "0ade3ac2cc010accf8ea607a7f3fcf3215e5e86c13e0cec0d904c018c0ed74b9",

"branchlen" : 0,

"status" : "active"

}

]

So in this case the headers are almost finished to dowload, when it reach the tip of the block chain (475324 at present time) it will start to download the blocks at a much increased pace, from all your connected peers.

CS