Author

Topic: [ANN][DASH] Dash (dash.org) | First Self-Funding Self-Governing Crypto Currency - page 1022. (Read 9723733 times)

newbie
Activity: 36
Merit: 0
Dashcentral down?

@qwizzie no problem Smiley But JFI what command do you use to mass-restart disabled nodes?

Cheers Wink

i still do it the hard way, one by one  Sad

I think that it's better. I just lost a lot of queues due to mass restart Sad

Hope to get some feedbacks

masternode start-missing
^^ Will only remote-start masternodes where the status is MISSING.
full member
Activity: 342
Merit: 110
Dashcentral down?

@qwizzie no problem Smiley But JFI what command do you use to mass-restart disabled nodes?

Cheers Wink

i still do it the hard way, one by one  Sad

I think that it's better. I just lost a lot of queues due to mass restart Sad

Hope to get some feedbacks
legendary
Activity: 2548
Merit: 1245
Dashcentral down?

@qwizzie no problem Smiley But JFI what command do you use to mass-restart disabled nodes?

Cheers Wink

i still do it the hard way, one by one  Sad
full member
Activity: 342
Merit: 110
Dashcentral down?

@qwizzie no problem Smiley But JFI what command do you use to mass-restart disabled nodes?

Cheers Wink
legendary
Activity: 2548
Merit: 1245

Would it not be possible for our main man Mr Duffield to implant some code on the next update to kick any masternode not updated within say a month or so ??

The next update (12.1) will have a new protocol version, which means that our current problem will be automatically solved (it will kick off any older protocol versions after some grace time)
Unless we end up with several versions on that new protocol version again, in which case i think we do need a longterm solution.  

Something a bit strange happened

After discovering that i had some nodes on .56, I had to restart them from cold wallet after upgrading to .58. They were totally "disappeared" also from ninja.

I gave the masternode start-disabled command and ALL the nodes were restarted, I assume I also lost the queue with all of them (and a lot of dash, therefore)

Any idea of why this happened?

Thanks

sorry Gi01, i dont use that command myself.. i cant help you there.
sr. member
Activity: 275
Merit: 250
Please upgrade your masternodes to latest version 0.12.0.58

Please download from official source :  https://www.dash.org/downloads/

Current masternode versions % on the Dash network : https://www.dashninja.pl/masternodes.html


I want to see at least 90% on version 0.12.0.58 by the end of this week !
Lets make it happen together !!






Would it not be possible for our main man Mr Duffield to implant some code on the next update to kick any masternode not updated within say a month or so ??
full member
Activity: 342
Merit: 110
Something a bit strange happened

After discovering that i had some nodes on .56, I had to restart them from cold wallet after upgrading to .58. They were totally "disappeared" also from ninja.

I gave the masternode start-disabled command and ALL the nodes were restarted, I assume I also lost the queue with all of them (and a lot of dash, therefore)

Any idea of why this happened?

Thanks
legendary
Activity: 2548
Merit: 1245
Please upgrade your masternodes to latest version 0.12.0.58

Please download from official source :  https://www.dash.org/downloads/

Current masternode versions % on the Dash network : https://www.dashninja.pl/masternodes.html


I want to see at least 90% on version 0.12.0.58 by the end of this week !
Lets make it happen together !!




legendary
Activity: 3570
Merit: 1126
I am mining ETH with my small 4xGPU  rig and selling them on polo to buy Dash.

is there any pool that will do this automaticaly? I mine eth they pay dash.
like two years ago, there was a multipool that pays dash but I dont know if they sitl exist.


Yes it was xpool.ca, but it's closed now. change it to zpool.ca you can mine everything there but pay only in BTC.

We pay in DASH as well. BTC is the recommended currency though.

I remember now. I mined there too. And it was good.

Can I mine ETH and ETC there and receive DASH?



Unfortunately no. the stratum server is not compatible with ETH/C
sr. member
Activity: 436
Merit: 250
hey quick question, my SSD drive is full where my DASH wallet is and cant remember how I can move the data folder to a new volume...

can someone point me in the right direction?

Thanks


Put the data folder where you want it to be and start the dash wallet with a link parameter to this folder like this:

Code:
-datadir=

Also, have you tired to delete "debug.log" first? This file is getting very huge over time.
hero member
Activity: 525
Merit: 500
My MN is in the MN list but when it is shown as inactive. What to do?

You're probably running an older version. Upgrade to version .58 and it should fix your problem. Here is an example script I use for upgrade, modify it to your setup:

./dash-cli stop
rm dashd -fr
rm dash-cli -fr
rm rm .dash/debug.log .dash/peers.dat .dash/mncache.dat -fr
wget https://www.dashpay.io/binaries/dash-0.12.0.58-linux64.tar.gz
tar zxvf dash-0.12.0.58-linux64.tar.gz
mv dash-0.12.0/bin/dashd .
mv dash-0.12.0/bin/dash-cli .
chmod +x ./dashd
chmod +x ./dash-cli
./dashd
sleep 25
./dash-cli getinfo


Also:
./dash-cli masternode status

Your masternode is not really working until it appears both on the MN list and your MN reports back "Masternode successfully started" with the above command.
I had some MNs get on the wrong chain due to not being on version .58. It took me a while to discover the procedure to get MN activation to stick even after MNs were on the correct version and chain. Briefly:

1. Start your cold wallet. Let it load at least the masternode list and masternode winners.
2. Stop your remote MN:  './dash-cli stop'
3. Start your remote MN: './dashd'  
4. On the cold wallet side, use 'masternode start-alias' or 'masternode start-missing' to start the remote MN.
5. On your remote MN: './dash-cli masternode status'
6. Check the masternode list for the tx vin associated with your MN.

Do not let too much time lapse between step 3 and step 4. This is where the trouble lies. If you let an unactivated MN, also called a 'hot node', sit without being activated for too long, it won't start as a MN properly.  

hero member
Activity: 507
Merit: 500
My MN is in the MN list but when it is shown as inactive. What to do?

You're probably running an older version. Upgrade to version .58 and it should fix your problem. Here is an example script I use for upgrade, modify it to your setup:

./dash-cli stop
rm dashd -fr
rm dash-cli -fr
rm rm .dash/debug.log .dash/peers.dat .dash/mncache.dat -fr
wget https://www.dashpay.io/binaries/dash-0.12.0.58-linux64.tar.gz
tar zxvf dash-0.12.0.58-linux64.tar.gz
mv dash-0.12.0/bin/dashd .
mv dash-0.12.0/bin/dash-cli .
chmod +x ./dashd
chmod +x ./dash-cli
./dashd
sleep 25
./dash-cli getinfo

legendary
Activity: 1092
Merit: 1001
My MN is in the MN list but it is shown as inactive. What to do?
legendary
Activity: 1120
Merit: 1000
I use one of the several masternode hosting services that are offered by various members/businesses, and let me tell you, it's nice. This weekend when all the MN shutdown issues were occurring, I saw "error" or "warning" on Dashcentral several times, but none of them ever dropped out of the payment queue. My provider was constantly monitoring and fixing them as necessary, which is good, since I was on the road when all this happened and couldn't do anything. Having my nodes stay up when they otherwise would've gone down has paid for three months' of hosting.

Just something to think about if you live a busy lifestyle!
full member
Activity: 322
Merit: 100
I am mining ETH with my small 4xGPU  rig and selling them on polo to buy Dash.

is there any pool that will do this automaticaly? I mine eth they pay dash.
like two years ago, there was a multipool that pays dash but I dont know if they sitl exist.


Yes it was xpool.ca, but it's closed now. change it to zpool.ca you can mine everything there but pay only in BTC.

We pay in DASH as well. BTC is the recommended currency though.

I remember now. I mined there too. And it was good.

Can I mine ETH and ETC there and receive DASH?

legendary
Activity: 3570
Merit: 1126
I am mining ETH with my small 4xGPU  rig and selling them on polo to buy Dash.

is there any pool that will do this automaticaly? I mine eth they pay dash.
like two years ago, there was a multipool that pays dash but I dont know if they sitl exist.


Yes it was xpool.ca, but it's closed now. change it to zpool.ca you can mine everything there but pay only in BTC.

We pay in DASH as well. BTC is the recommended currency though.
legendary
Activity: 1260
Merit: 1001
Ugh, the troll box is so stupid, how can anyone spin on that all day?  LOL.  Must be fishing for newbs constantly, but doubt they're catching anything Tongue

ilic, all you really need, if you're just moving your node, is to take the wallet.dat file and put it in a fresh .dash folder.  In fact, you can set the new drive up, sync everything then replace the wallet.dat file with your old wallet.dat file and all should be well.
Jump to: