• Forum has been upgraded, all links, images, etc are as they were. Please see Official Announcements for more information

v0.10.15 - Onyx Release

After updating and restarting, I do a getinfo and it still shows

"version" : 101517

NOTE: I'm new and this is my first update, so I could be doing something wrong. But I don't think so.
 
After updating and restarting, I do a getinfo and it still shows

"version" : 101517

NOTE: I'm new and this is my first update, so I could be doing something wrong. But I don't think so.
Your browser may have cached the darkcoin.io download page (assuming that's where you got it) ?

- I can only vouch for the linux link, it's definitely v19. (github source also good!)
 
Ok. Thanks for the confirmation. That means I'm doing it wrong :sad:
give us exact procedure you are using to update so we can help
mine for example is (I keep it in mn_update.sh)
Code:
#!/bin/bash
if [ $1 ]; then
DARK=darkcoin-$1-linux
else
DARK=darkcoin-0.10.15.17-linux
fi
wget https://github.com/darkcoinproject/darkcoin-binaries/raw/master/$DARK.tar.gz
tar -xvf $DARK.tar.gz
chmod u+x $DARK/bin/64/darkcoind
darkcoind stop
sleep 5
mv $DARK/bin/64/darkcoind /usr/bin/darkcoind
rm -r $DARK*
darkcoind
so for 0.10.15.19 I can run it like that
Code:
sudo ./mn_update.sh 0.10.15.19
 
Ok. Thanks for the confirmation. That means I'm doing it wrong :sad:

Get new version: wget https://github.com/darkcoinproject/darkcoin-binaries/raw/master/darkcoin-0.10.15.19-linux.tar.gz

Extract new version: tar xvf darkcoin-0.10.15.19-linux.tar.gz

Locate the currently running darkcoind: ps aux | grep darkcoind

Most probably its located in /usr/bin or /usr/local/bin, the command above will show you the location.

Stop the daemon: darkcoind stop

Rename the old binary in case you should need it later: mv /usr/bin/darkcoind /usr/bin/darkcoind.v0.10.15.17

Copy the binary from the archive to the location where the old binary was: cp darkcoin-0.10.15.19-linux/bin/64/darkcoind /usr/bin/darkcoind

If you happen to have a 32 bit Linux running you must use the version in darkcoin-0.10.15.19-linux/bin/32/

Restart daemon: darkcoind

Wait a minute or so, then type: darkcoind getinfo

The result should look (more or less) like this:

{
"version" : 101519,
"protocolversion" : 70043,
"walletversion" : 60001,
"balance" : 0.00000000,
"darksend_balance" : 0.00000000,
"blocks" : 164194,
"timeoffset" : 0,
"connections" : 8,
"proxy" : "",
"difficulty" : 3056.31052541,
"testnet" : false,
"keypoololdest" : 1412448054,
"keypoolsize" : 1001,
"paytxfee" : 0.00000000,
"mininput" : 0.00001000,
"errors" : ""
}
 
Last edited by a moderator:
give us exact procedure you are using to update so we can help
mine for example is (I keep it in mn_update.sh)
Code:
#!/bin/bash
if [ $1 ]; then
DARK=darkcoin-$1-linux
else
DARK=darkcoin-0.10.15.17-linux
fi
wget https://github.com/darkcoinproject/darkcoin-binaries/raw/master/$DARK.tar.gz
tar -xvf $DARK.tar.gz
chmod u+x $DARK/bin/64/darkcoind
darkcoind stop
sleep 5
mv $DARK/bin/64/darkcoind /usr/bin/darkcoind
rm -r $DARK*
darkcoind
so for 0.10.15.19 I can run it like that
Code:
sudo ./mn_update.sh 0.10.15.19

Thanks. Found an issue in my update script and corrected it. I now have all my nodes updated.
 
I'm a linux noob so I'm using WinSCP for update. I download the daemon and wallet to my windows local machine, login to MN through WinSCP and Putty and then:

1. Putty > ./darkcoind stop
2. WinSCP > delete old darkcoind and copy the new one.
3. Putty > chmod 755 darkcoind
3. Putty > ./darkcoind

That's all ;)
 
I'm a linux noob so I'm using WinSCP for update. I download the daemon and wallet to my windows local machine, login to MN through WinSCP and Putty and then:

1. Putty > ./darkcoind stop
2. WinSCP > delete old darkcoind and copy the new one.
3. Putty > chmod 755 darkcoind
3. Putty > ./darkcoind

That's all ;)
If you can manage that, you're practically a linux expert ;) - you might as well replace step 2 with a

Putty > mv darkcoind darkcoind-old && wget https://raw.githubusercontent.com/d...aries/master/darkcoin-0.10.15.19-linux.tar.gz

- it'll probably be about 100x faster downloading from your server via a gigabit backbone than uploading to it on a domestic connection.
 
If you can manage that, you're practically a linux expert ;) - you might as well replace step 2 with a

Putty > mv darkcoind darkcoind-old && wget https://raw.githubusercontent.com/d...aries/master/darkcoin-0.10.15.19-linux.tar.gz

- it'll probably be about 100x faster downloading from your server via a gigabit backbone than uploading to it on a domestic connection.
But then you'll need to add steps to untar it and move the binary from the embedded folders.
 
We started to have many partially unlisted nodes on drk.mn again! Can someone take a look? Is the evil striking back?
 
It was pretty bad a moment ago. But, after I sent the message, many went back to 100% active. But, the Payee Block Template history list still looks kind of bad.
elbereth's MNs are on v17 and older. drk.mn isn't magic, it's just data pulled from his MNs/running wallets and stuck in one place. If the MNs etc. are running deprecated versions of the daemon, the results can't be relied upon to be accurate...
 
Back
Top