kryptofoo
Active member
2000, 4 rounds. will up it to 5000Anyone testing large amounts right now? I'm testing 5000 tdrk, 8 rounds.
2000, 4 rounds. will up it to 5000Anyone testing large amounts right now? I'm testing 5000 tdrk, 8 rounds.
3.48148 / 4 = 87%anyone know the meaning of the new values displayed in the completion status bar mouseover? Example:
"Inputs have an average of 3.48148 of 4 rounds (87.037/0.385554)"
i'm testing 20.000 wallet (amount 19000 / 8 rounds) .. its all going very smoothly so far. This might be the update at which all works as planned.
one small note : one of the darksend status messages mention ''Darksend request incomplete: no matching denominations found for mixing. Wll retry...'' instead of ''Will retry...''
thanks. any idea on the 0.38554?3.48148 / 4 = 87%
Since evan is too lazy to make dns records:I'd guess stratum+tcp://54.91.95.14:3333
Ok, good to know.thanks. any idea on the 0.38554?
also status bar shows 33% not 87%. 33% looks closer to the truth
Oh wait: 87.037 * 0.38554 = 33%
why?
edit: appears the overall status takes the coins having >0 rounds of darksend and compensates for coins still in the n/a status. In my case, 38.554% of my coins have 1 round of darksend or greater. Those coins have completed average 87% of 4 rounds. So my overall completion is 87% * 38.554% = 33%
Got it!
Checkout a denominated transaction with 3 peers. It's pretty crazy. Can you imagine 4 or 5?:
http://test.explorer.darkcoin.fr/tx/71f1bd072a2048879d39f4ed10c13c0349171d6b6c57726c96f30919e15a5305
Thanks for your effort, much appreciated. The wiki will be the official (technical) documentation of Darkcoin. If someone wants to join in and contribute: the registration is open ;-)FYI, I've started a series of wiki pages for darksend on the qa site (http://wiki.darkcoin.qa/pages/viewpage.action?pageId=1015857), not sure if this will become part of the production site or not but really hoping we can get the prod wiki going!!!
I've been trying since last night on three nodes to do 15,000/8 rounds. 2 mac nodes one windows node. No luck as of 13.7 wallet. Just restarted them all with 13.8 wallet.Anyone testing large amounts right now? I'm testing 5000 tdrk, 8 rounds.
Having some time to kill, I tried to think of a way to explain the completion status bar calculation to newbies. This is what I came up with, I hope it is accurate and understandable:
View attachment 448
FYI, I've started a series of wiki pages for darksend on the qa site (http://wiki.darkcoin.qa/pages/viewpage.action?pageId=1015857), not sure if this will become part of the production site or not but really hoping we can get the prod wiki going!!!
void OverviewPage::updateDarksendProgress(){
int64 balance = pwalletMain->GetBalance();
if(balance == 0){
ui->darksendProgress->setValue(0);
QString s("No inputs detected");
ui->darksendProgress->setToolTip(s);
return;
}
std::ostringstream convert;
//Get average rounds of inputs
double a = ((double)pwalletMain->GetAverageAnonymizedRounds() / (double)nDarksendRounds)*100;
//Get the anon threshold
double max = nAnonymizeDarkcoinAmount;
//If it's more than the wallet amount, limit to that.
if(max > (double)(pwalletMain->GetBalance()/COIN)-1) max = (double)(pwalletMain->GetBalance()/COIN)-1;
//denominated balance / anon threshold -- the percentage that we've completed
double b = ((double)(pwalletMain->GetDenominatedBalance()/COIN) / max);
double val = a*b;
if(val < 0) val = 0;
if(val > 100) val = 100;
ui->darksendProgress->setValue(val);//rounds avg * denom progress
convert << "Inputs have an average of " << pwalletMain->GetAverageAnonymizedRounds() << " of " << nDarksendRounds << " rounds (" << a << "/" << b << ")";
QString s(convert.str().c_str());
ui->darksendProgress->setToolTip(s);
}