Every 5 minutes, my wallet is not responding. This makes it really frustrating. Spending a whole day setting up, to watch your wallet not respond on te crucial moment. Timing is everything in this game... And know it's impossible.
use printtoconsole=1
in huntercoin.conf
---
also make sure your harddrive has a lot of free space or not fragmented (use defraggler on the datadir)
No, Snailbrain, that won't solve the problem. The problem is that Qt hangs during network events. And with 4000 avatars we have a LOT of network events. Here are the solutions from the Qt developers:
http://doc.qt.digia.com/qq/qq27-responsive-guis.htmlLet me quote from the article:
"At QtCentre people come to us with the recurring problem of their GUIs freezing during long operations. The issue is not difficult to overcome but you can do it in many different ways, so I'd like to present a range of possible options that can be used depending on the situation you are dealing with."
"During the calculations (regardless of any usage of signals and slots) all event processing gets halted. As a result, the GUI is not refreshed, user input is not processed, network activity stops and timers don't fire—the application looks like it's frozen and, in fact, the part of it not related to the time-intensive task is frozen."
"...(a) variation is when a program has to trigger some activity (for instance a network download) and wait for it to be completed before continuing to the next step of the algorithm."
And that is OUR problem. If you run the client in Qt Creator you will see that it freezes whenever there is a network event in the output of the compiler. But there are solutions:
"This variation of the problem is, in itself, easy to avoid when using Qt because most of the asynchronous tasks performed by the framework emit a signal when they have finished doing their job, and you can connect it to a slot that will continue the algorithm."
The article gives the actual code that is needed. You need to talk to thecoder.
Sorry, but telling people to add "printtoconsole=1" to huntercoin.conf will not work.