Sync problems with v101611 anybody?
Seems ok for now.
I had before on Mac but after deleting peer.dat it was solved
Last edited by a moderator:
Sync problems with v101611 anybody?
Seems ok for now.
My qt wallet stuck today at "1 hour behind". Closed, opened it again and it synced.Sync problems with v101611 anybody?
Seems ok for now.
look there %APPDATA%\DarkCoin\Is there a peers.dat on the windows side?
Cool, is this rumor or fact?I guess Evan will start to squash some old bugs once he is satisfied how new Darksend implementation works
EDIT: I didn't remove peers.dat.... will do this now
https://darkcointalk.org/threads/v16-x-testing.2976/page-8#post-29300Cool, is this rumor or fact?
Checked this against ALL my customers nodes, i don't get a single entry in any debug.log ...
Code:ubuntu@ip-10-0-2-201:~$ cat .darkcoin/debug.log | grep "CActiveMasternode" | tail -n 20
My qt wallet stuck today at "1 hour behind". Closed, opened it again and it synced.
I guess Evan will start to squash some old bugs once he is satisfied how new Darksend implementation works
EDIT: I didn't remove peers.dat.... will do this now
Aah, i forgot that :grin:
There is no really need for that I believe, it should just help to avoid "old" clients so wallet will not try to connect to them, fail and remove them from the list one by one.Are there other instructions to follow when updating to 16.11?
Do I remove peers.dat on both local and server?
You can do that, no harm, just in case, i always delete peers.dat from both local and remote when updating.Are there other instructions to follow when updating to 16.11?
Do I remove peers.dat on both local and server?
I think I'll build them myself from GIT like you did, maybe there's a difference...
I think I'll add some lines of additional Log, build again and see what's going on...Checked this against ALL my customers nodes, i don't get a single entry in any debug.log ...
10.16.12 Onyx V2 - Masternode Operators Please Update
- Fixed mixing issues on the network
Source: https://github.com/darkcoin/darkcoin
Windows .exe: https://github.com/darkcoinproject/darkcoin-binaries/raw/master/darkcoin-0.10.16.12-win.zip
Mac OSX: https://github.com/darkcoinproject/darkcoin-binaries/raw/master/darkcoin-0.10.16.12-osx.dmg
Linux: https://github.com/darkcoinproject/darkcoin-binaries/raw/master/darkcoin-0.10.16.12-linux.tar.gz
Damn, sync stuck hits again...restart and sync complete.Sync problems with v101611 anybody?
Seems ok for now.
There are some checks of vin in ProcessMessageMasternode (on receiver side) and in ThreadCheckDarkSendPool actually so it should be ok.Okay, adding a ton of my own debug info tracked this one down, and even when I'm a bit ashamed to admit it's user error the implications of my findings are too interesting to not share them here:
- I have a hot/cold setup for my Masternodes.
- I have a script which updates my remote Masternodes automatically. The binary, a generated darkcoin.conf and a couple of other things. Somehow :smile: about one month ago the configuration entry "masternode=1 got lost, so from that day on all of my hot Masternodes did NOT have that line in darkcoin.conf. :facepalm: (the cold ones have, though)
- This means CActiveMasternode::RegisterAsMasterNode() is never successdully executed:
- Private key is not checked
- External IP and port is not checked
- Wallet lock is not checked
- vin is not checked
- Masternode is not relayed to the peers
- A ton of other things...
- Most of the above is not really THAT important for a hot Masternode to run properly , but I still fail to see why my Masternodes were seen (and paid of course) by the rest of the network at all.