Bitcoin Forum
April 28, 2024, 05:31:47 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 [5108] 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 ... 7012 »
  Print  
Author Topic: [ANN][DASH] Dash (dash.org) | First Self-Funding Self-Governing Crypto Currency  (Read 9722497 times)
moocowmoo
Sr. Member
****
Offline Offline

Activity: 263
Merit: 250


bovine quadruped, professional loafer, dash dev


View Profile WWW
August 26, 2015, 05:34:52 PM

Thanks for your quick response, It was a easy fix, I just had to use my brain a tiny bit. Im loving your script thanks for this awesome tool  Smiley

You're welcome.  Glad you like it!

It will poll github and refuse to run if there is a newer version, so your changes will get overwritten (safely, but thats a git lesson) when a new version is pushed (and your run the sync script).

I'm going to have to update it soon to deal with alternate filesystem layouts..

Luckily .49 seems nice and stable. .50 should be a while, so I have time.

tips: XmoocowYfrPKUR6p6M5aJZdVntQe71irCX | identity: https://keybase.io/moocowmoo
service: https://masternode.me -- The first automated masternode service. Ugly website, stellar uptimes and hands-on support. Over 150 nodes with 300+ days uptime!
1714282307
Hero Member
*
Offline Offline

Posts: 1714282307

View Profile Personal Message (Offline)

Ignore
1714282307
Reply with quote  #2

1714282307
Report to moderator
1714282307
Hero Member
*
Offline Offline

Posts: 1714282307

View Profile Personal Message (Offline)

Ignore
1714282307
Reply with quote  #2

1714282307
Report to moderator
Even in the event that an attacker gains more than 50% of the network's computational power, only transactions sent by the attacker could be reversed or double-spent. The network would not be destroyed.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
TanteStefana2
Legendary
*
Offline Offline

Activity: 1260
Merit: 1001


View Profile
August 26, 2015, 05:44:51 PM

Now the header on the crash dialog reads "INPAG" and the text reads "runtime error 424".

I'm trying to run it on a Win 7 32bits. Same .bat

I'm sorry, but I don't believe there is a miner for a 32 bit system.  You can, however, install a linux 64bit distribution as a duel boot and run a miner if you need to.  Unless your hardware can't run it.  But if it's built the last 5 years or so (maybe longer now) it should work.

Another proud lifetime Dash Foundation member Smiley My TanteStefana account was hacked, Beware trading
"You'll never reach your destination if you stop to throw stones at every dog that barks."
Sir Winston Churchill  BTC: 12pu5nMDPEyUGu3HTbnUB5zY5RG65EQE5d
RBCastro
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
August 26, 2015, 05:55:34 PM

Now the header on the crash dialog reads "INPAG" and the text reads "runtime error 424".

I'm trying to run it on a Win 7 32bits. Same .bat

I'm sorry, but I don't believe there is a miner for a 32 bit system.  You can, however, install a linux 64bit distribution as a duel boot and run a miner if you need to.  Unless your hardware can't run it.  But if it's built the last 5 years or so (maybe longer now) it should work.

I found out one that is working on win32

https://github.com/tpruvot/cpuminer-multi/releases/download/v1.1-multi/cpuminer-multi-rel1.1.zip

I made a .bat to run with my other altcoins:

Code:
cpuminer-x86.exe -a x11 -b 127.0.0.1:4048 -o STRATUM -u USER.WORKER -p PASS -t 1
Icebucket
Sr. Member
****
Offline Offline

Activity: 409
Merit: 250


View Profile
August 26, 2015, 06:00:33 PM
Last edit: August 26, 2015, 07:22:07 PM by Icebucket

How to start dashd automatically again after it crashed.

run:
Code:
crontab -e 

add line:
Code:
*/1 * * * * /home/dashuser/mn_watch.sh >/dev/null 2>&1

use any editor you like and save this as "mn_watch.sh" file in user "dashuser" home directory:
Code:
#!/bin/bash
if [ -z `pidof dashd` ]; then
/home/dashuser/dashd
fi

add executable flag:
Code:
chmod u+x mn_watch.sh


PS. Use appropriate username, not "dashuser" from my example Wink
I also assumed that dashd is located in your user home directory, change path if needed.

PPS. not tested but should work  Roll Eyes

EDIT: ooops, tested and fixed  Smiley

This seems like the perfect solution to my all of my MN problems, But I am 5 and dont understand this, tryed but did not work, Can someone make a video for 5y olds Tongue

Putting a 10 dash bounty on this  Cool .. if anyone is interested Grin

(send me a priv message if you want to collect the bounty, I rarely scan every page here)

“Every morning we are born again. What we do today is what matters most.”
― Gautama Buddha
r4vani
Sr. Member
****
Offline Offline

Activity: 348
Merit: 250


Play Poker Games at Bitoker.com


View Profile WWW
August 26, 2015, 06:11:02 PM

We need bulk of gpu miner like this  Cool

From Scrypt Mining migrate to Dash  Roll Eyes


BITOKER.COM[
                            
Enjoy the ultimate online play bitcoin poker
Anonymous  /  US Player Friendly  /  Instant Play
[
          
]
Sub-Ether
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250


Quantum entangled and jump drive assisted messages


View Profile
August 26, 2015, 06:32:03 PM

Now the header on the crash dialog reads "INPAG" and the text reads "runtime error 424".

I'm trying to run it on a Win 7 32bits. Same .bat

I'm sorry, but I don't believe there is a miner for a 32 bit system.  You can, however, install a linux 64bit distribution as a duel boot and run a miner if you need to.  Unless your hardware can't run it.  But if it's built the last 5 years or so (maybe longer now) it should work.

I found out one that is working on win32

https://github.com/tpruvot/cpuminer-multi/releases/download/v1.1-multi/cpuminer-multi-rel1.1.zip

I made a .bat to run with my other altcoins:

Code:
cpuminer-x86.exe -a x11 -b 127.0.0.1:4048 -o STRATUM -u USER.WORKER -p PASS -t 1
wrong .bat , you are using a solo mining own address and the port is wrong anyway. I will answer this at dashtalk..

Dash is 27.3 times faster with syncing and updating than Bitcoin and 93.7 times faster than Monero. Bitcoin (v0.11.0) has a Tao ratio 11.2% faster than bitcoin (v0.10.0) release.
Dash (v.0.12.0.49) = Tao sync ratio = 0.15 seconds / hour of update || Dash (v.0.11.2.23) = Tao sync ratio = 0.24 seconds / hour of update. V12 versus V11 speedup = +36.5%
Bitcoin (v.0.11.0) = Tao sync ratio = 4.14 seconds / hour of update || Monero (v.0.41.1)  = Tao sync ratio = 14.2 seconds / hour of update
qwizzie
Legendary
*
Offline Offline

Activity: 2548
Merit: 1245



View Profile
August 26, 2015, 06:37:06 PM

Nice to see the numbers match here :


 

and here :




Onward and forward to 3000 active masternodes !

Learn from the past, set detailed and vivid goals for the future and live in the only moment of time over which you have any control : now
Sub-Ether
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250


Quantum entangled and jump drive assisted messages


View Profile
August 26, 2015, 06:57:15 PM

Nice to see the numbers match here :
masternodes =2524

Onward and forward to 3000 active masternodes !
whats happened to the other 500 masternodes, they can't all be waiting to buy back in, why so slow ?!

Dash is 27.3 times faster with syncing and updating than Bitcoin and 93.7 times faster than Monero. Bitcoin (v0.11.0) has a Tao ratio 11.2% faster than bitcoin (v0.10.0) release.
Dash (v.0.12.0.49) = Tao sync ratio = 0.15 seconds / hour of update || Dash (v.0.11.2.23) = Tao sync ratio = 0.24 seconds / hour of update. V12 versus V11 speedup = +36.5%
Bitcoin (v.0.11.0) = Tao sync ratio = 4.14 seconds / hour of update || Monero (v.0.41.1)  = Tao sync ratio = 14.2 seconds / hour of update
Minotaur26
Legendary
*
Offline Offline

Activity: 1092
Merit: 1000


View Profile
August 26, 2015, 07:12:04 PM

Nice to see the numbers match here :
masternodes =2524

Onward and forward to 3000 active masternodes !
whats happened to the other 500 masternodes, they can't all be waiting to buy back in, why so slow ?!

The count is only of nodes on v12 the ones that are still on v11 are not being counted anymore. Some people just like to update after everything is stable or are just not following the forums so they may not even be aware of the updates yet.
Triptolemoose
Newbie
*
Offline Offline

Activity: 32
Merit: 0


View Profile WWW
August 26, 2015, 07:25:02 PM

Nice to see the numbers match here :
masternodes =2524

Onward and forward to 3000 active masternodes !
whats happened to the other 500 masternodes, they can't all be waiting to buy back in, why so slow ?!

The count is only of nodes on v12 the ones that are still on v11 are not being counted anymore. Some people just like to update after everything is stable or are just not following the forums so they may not even be aware of the updates yet.

Is there any way to check how many v11 masternodes are still out there?
Solarminer
Hero Member
*****
Offline Offline

Activity: 826
Merit: 502


View Profile
August 26, 2015, 07:32:24 PM

Nice to see the numbers match here :
masternodes =2524

Onward and forward to 3000 active masternodes !
whats happened to the other 500 masternodes, they can't all be waiting to buy back in, why so slow ?!

BUY-BACK IN??

Who said they sold :-P
Thank you to the Bitcoin doubters.  I picked up another node cheap.  I am sure we will be over 3000 in no time once the good news of .49 is shown to all.  Only using 220MB of ram on this release.
eduffield (OP)
Legendary
*
Offline Offline

Activity: 1176
Merit: 1036


Dash Developer


View Profile WWW
August 26, 2015, 07:41:33 PM

Quote
8/5 - Turn off enforcement / network upgrade
8/7-12 - Turn on enforcement
8/24 - Hard fork to allow for super blocks
9/6 - The very first budget block will be 332320, so that's quite a ways off (about 36 days from today)

https://dashtalk.org/threads/v12-testing-thread.5484/page-105#post-61537

Can we get an update on this? How does the "hard fork" indicated in Step 2 differ from the typical "spork" that we are used to? Hopefully it's not going to be a "cross your fingers and pray" thing like RC3's (several) attempted forks? Has it already happened, or was this date pushed back when the release was pushed back? Is the first budget block still planned for 9/6?

Thanks for any information!



Step 1 and 2 are done and were successful. We shouldn't have any failures like RC3 anymore, we have a nice framework for expansion and there's nothing in the plans that could cause issues like that one.
Step 3 isn't going to cause any problems, it's basically 4 lines of code
Step 4 was tested extensively. I'll be pushing out the first budget proposal soon, then we should see the successful payment of those items on September 6th.

Dash - Digital Cash | dash.org | dashfoundation.io | dashgo.io
ddink7
Legendary
*
Offline Offline

Activity: 1120
Merit: 1000



View Profile
August 26, 2015, 07:53:00 PM

Quote
8/5 - Turn off enforcement / network upgrade
8/7-12 - Turn on enforcement
8/24 - Hard fork to allow for super blocks
9/6 - The very first budget block will be 332320, so that's quite a ways off (about 36 days from today)

https://dashtalk.org/threads/v12-testing-thread.5484/page-105#post-61537

Can we get an update on this? How does the "hard fork" indicated in Step 2 differ from the typical "spork" that we are used to? Hopefully it's not going to be a "cross your fingers and pray" thing like RC3's (several) attempted forks? Has it already happened, or was this date pushed back when the release was pushed back? Is the first budget block still planned for 9/6?

Thanks for any information!



Step 1 and 2 are done and were successful. We shouldn't have any failures like RC3 anymore, we have a nice framework for expansion and there's nothing in the plans that could cause issues like that one.
Step 3 isn't going to cause any problems, it's basically 4 lines of code
Step 4 was tested extensively. I'll be pushing out the first budget proposal soon, then we should see the successful payment of those items on September 6th.

Excellent--thanks for the update Evan! It's amazing to think of how much development has occurred in the last year and how far we've come since last summer!

Dash - Digital Cash
https://www.dash.org/
oblox
Legendary
*
Offline Offline

Activity: 1442
Merit: 1018


View Profile
August 26, 2015, 08:11:17 PM

How to start dashd automatically again after it crashed.

run:
Code:
crontab -e 

add line:
Code:
*/1 * * * * /home/dashuser/mn_watch.sh >/dev/null 2>&1

use any editor you like and save this as "mn_watch.sh" file in user "dashuser" home directory:
Code:
#!/bin/bash
if [ -z `pidof dashd` ]; then
/home/dashuser/dashd
fi

add executable flag:
Code:
chmod u+x mn_watch.sh


PS. Use appropriate username, not "dashuser" from my example Wink
I also assumed that dashd is located in your user home directory, change path if needed.

PPS. not tested but should work  Roll Eyes

EDIT: ooops, tested and fixed  Smiley

This seems like the perfect solution to my all of my MN problems, But I am 5 and dont understand this, tryed but did not work, Can someone make a video for 5y olds Tongue

Putting a 10 dash bounty on this  Cool .. if anyone is interested Grin

(send me a priv message if you want to collect the bounty, I rarely scan every page here)

No offense, but that's as easy as it gets. The only substitute is using whatever text editor you have on your instance to actually create the script file (vi, nano, joe, etc).
fuzzyduck
Member
**
Offline Offline

Activity: 78
Merit: 10


View Profile
August 26, 2015, 08:26:26 PM

Think I found a Pi replacement if DASH gets a little to 'intensive'

:-D

http://www.banana-pi.org/m3.html

.49 is running rocksolid on my PI2. 10% to 20% cpu and 17%ram atm.
Muchos headroom left for more implementations! Keep 'm coming Evan!

Run a masternode on a raspberry pi 2 @home! Follow my noobfriendly tutorial @ https://dashtalk.org/threads/masternode-on-raspberry-pi-2-model-b.4083
stealth923
Legendary
*
Offline Offline

Activity: 1036
Merit: 1000


View Profile
August 26, 2015, 08:44:33 PM

Quote
8/5 - Turn off enforcement / network upgrade
8/7-12 - Turn on enforcement
8/24 - Hard fork to allow for super blocks
9/6 - The very first budget block will be 332320, so that's quite a ways off (about 36 days from today)

https://dashtalk.org/threads/v12-testing-thread.5484/page-105#post-61537

Can we get an update on this? How does the "hard fork" indicated in Step 2 differ from the typical "spork" that we are used to? Hopefully it's not going to be a "cross your fingers and pray" thing like RC3's (several) attempted forks? Has it already happened, or was this date pushed back when the release was pushed back? Is the first budget block still planned for 9/6?

Thanks for any information!



Step 1 and 2 are done and were successful. We shouldn't have any failures like RC3 anymore, we have a nice framework for expansion and there's nothing in the plans that could cause issues like that one.
Step 3 isn't going to cause any problems, it's basically 4 lines of code
Step 4 was tested extensively. I'll be pushing out the first budget proposal soon, then we should see the successful payment of those items on September 6th.

Excellent update Evan. Thanks to you and the team!

Also cannot wait to read the upcoming white paper!
mjsrs
Full Member
***
Offline Offline

Activity: 172
Merit: 100


View Profile
August 26, 2015, 10:39:45 PM

FUD is what powers Dash. I've gotten a bunch of ideas from it including the one about the masternode network being an active force to deflect attack. Keep it coming people  Wink

Add it to acknowledgement page  Grin Grin Grin

https://dash-stats.com XoPGniokL6rRahoKviBza8oqWSTyUQPkAF
HinnomTX
Hero Member
*****
Offline Offline

Activity: 525
Merit: 500



View Profile
August 26, 2015, 10:51:09 PM

I've upgraded my masternodes to v12.0.49 but I'm still seeing some of them drop off the list after 1-2 hours as EXPIRED. It's strange because the 'expired' masternodes are still active with port open (responding to 'dash-cli getinfo'). Anyone else having this problem?

"One can only solve so much with cryptography. The rest of the solution will prove to be economic in nature." -Evan Duffield
Dash is Digital Cash.  https://www.dash.org
Lebubar
Legendary
*
Offline Offline

Activity: 1288
Merit: 1000



View Profile
August 26, 2015, 11:03:25 PM

I've upgraded my masternodes to v12.0.49 but I'm still seeing some of them drop off the list after 1-2 hours as EXPIRED. It's strange because the 'expired' masternodes are still active with port open (responding to 'dash-cli getinfo'). Anyone else having this problem?

50% of the time is because you execute the "masternode startt "xxx"" from the cold wallet that is not on the last version.
eduffield (OP)
Legendary
*
Offline Offline

Activity: 1176
Merit: 1036


Dash Developer


View Profile WWW
August 26, 2015, 11:09:41 PM

I've upgraded my masternodes to v12.0.49 but I'm still seeing some of them drop off the list after 1-2 hours as EXPIRED. It's strange because the 'expired' masternodes are still active with port open (responding to 'dash-cli getinfo'). Anyone else having this problem?

Sounds like your hot node wasn't activated. I would search the log for this "CActiveMasternode::EnableHotColdMasterNode() - Enabled! You may shut down the cold daemon."

Dash - Digital Cash | dash.org | dashfoundation.io | dashgo.io
Pages: « 1 ... 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 [5108] 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 ... 7012 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!