qwizzie
Well-known member
No, not yet - it's 8am here and i got some sleep
Will compile the latest iteration as soon as i get the latest source.
thanks mate..
No, not yet - it's 8am here and i got some sleep
Will compile the latest iteration as soon as i get the latest source.
Last night Evan explained this: ""not compatible" means the automated process got rejected by a masternode. It's not a problem, it will just keep trying"When theres "darkSend Status => ERROR : not compatible with existing transactions" in the debug.log file....does this mean it cannot find any compatible mixing partners in the masternode and you will need to wait until someone can mix with you?
****** Please Update To 10.12.17 or 9.12.17 *******
Fixed coin locking issues
Stable Binaries
http://www.darkcoin.io/downloads/master-rc4/darkcoin-qt
http://www.darkcoin.io/downloads/master-rc4/darkcoind
RC4 Binaries ( masternodes / auto-denom )
http://www.darkcoin.io/downloads/rc4/darkcoin-qt
http://www.darkcoin.io/downloads/rc4/darkcoind
Windows wallet v.17 does not denominate for me. I've tried two fresh wallets but it still would not denominate. And sometimes it sends coins using non-anonymous, sometimes it would not, saying "there's not enough fund in the balance" when there is enough.
View attachment 322
Come again?Bug alert!
Updated, and the QT opens with the wallet un
Come again?
Would it be possible to explain the >5,000 coin problem, maybe someone with a fresh vision could get a crazy idea on how to solve it?
The technical background of the 5000 DRK limitation is, that with current denomination scheme (0.1 ; 1 ; 10 ; 100 ; 500) the tx scripts for sending amounts > 5000 DRK get to large (20k+) and will not be relayed/mined by miners.More technical details on this issue would be nice. :smile:Would it be possible to explain the >5,000 coin problem, maybe someone with a fresh vision could get a crazy idea on how to solve it?
The technical background of the 5000 DRK limitation is, that with current denomination scheme (0.1 ; 1 ; 10 ; 100 ; 500) the tx scripts for sending amounts > 5000 DRK get to large (20k+) and will not be relayed/mined by miners.
Possible solutions are to
a) extend the scheme by additional denomination units (e.g. 1000 & 5000)
b) switch to different scheme:
- either binary scheme as proposed by Kristov Atlas ( 1 + 2 + 4 + 8 + 16 + 32 + 64 + 128 + ...)
- or a optimized scheme as proposed by babygiraffe in https://darkcointalk.org/threads/development-updates-july-7th.1735/#post-11434
also thought of that, would be nice to have no limitCould the wallet not denominate balances above 5000 into sets of 5000?
The technical background of the 5000 DRK limitation is, that with current denomination scheme (0.1 ; 1 ; 10 ; 100 ; 500) the tx scripts for sending amounts > 5000 DRK get to large (20k+) and will not be relayed/mined by miners.
Yep, that's another possible solution. Has to be implemented thoughWhat's the big deal? The client can just split transactions > 5000 DRK into multiple transactions < 5000 DRK. Wouldn't even require any further interaction with the user.
Has to be implemented though
while(amountToSend > 0){
txAmount = 0;
while((txSize < MAX_SIZE) && (txAmount < amountToSend)){
addInput();
}
sendTx();
amountToSend -= txAmount;
}