Bitcoin Forum
May 14, 2024, 07:03:36 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 [1840] 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 ... 7012 »
  Print  
Author Topic: [ANN][DASH] Dash (dash.org) | First Self-Funding Self-Governing Crypto Currency  (Read 9722528 times)
TanteStefana2
Legendary
*
Offline Offline

Activity: 1260
Merit: 1001


View Profile
June 19, 2014, 03:19:20 AM
 #36781

I don't understand, is that a yes?

Sorry for being confusing, I thought I slept enough last night, but I've literally been falling asleep everywhere I go today, LOL.

Yes, port 9999 needs to be open.  If you have a router or firewall it may be blocking it?

If your MN private key is from the remote wallet as you stated in the original post, I believe you can get the same error message.  Or at least I remember something like that happening.  My memory = sh*t though, so Huh?

And yes, I probably did repeat myself, when I'm tired like I am now, I get muddled, sorry about that. Edited 'cause I literally did it again, LOL Cheesy

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
1715670216
Hero Member
*
Offline Offline

Posts: 1715670216

View Profile Personal Message (Offline)

Ignore
1715670216
Reply with quote  #2

1715670216
Report to moderator
1715670216
Hero Member
*
Offline Offline

Posts: 1715670216

View Profile Personal Message (Offline)

Ignore
1715670216
Reply with quote  #2

1715670216
Report to moderator
According to NIST and ECRYPT II, the cryptographic algorithms used in Bitcoin are expected to be strong until at least 2030. (After that, it will not be too difficult to transition to different algorithms.)
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715670216
Hero Member
*
Offline Offline

Posts: 1715670216

View Profile Personal Message (Offline)

Ignore
1715670216
Reply with quote  #2

1715670216
Report to moderator
1715670216
Hero Member
*
Offline Offline

Posts: 1715670216

View Profile Personal Message (Offline)

Ignore
1715670216
Reply with quote  #2

1715670216
Report to moderator
Quartx
Hero Member
*****
Offline Offline

Activity: 1036
Merit: 504


Becoming legend, but I took merit to the knee :(


View Profile WWW
June 19, 2014, 03:21:07 AM
 #36782

I bought a little to show my support XD

Icebucket
Sr. Member
****
Offline Offline

Activity: 409
Merit: 250


View Profile
June 19, 2014, 03:30:23 AM
 #36783




UNSURE ABOUT WHAT YOU NEED TO DO FOR FRIDAY'S HARD FORK?

You must update to the latest version, anyway, here is a guide on what to do depending on whether you are a regular user, masternode op, pool op, exchange, etc. Please visit and make sure you update soon.

https://darkcointalk.org/threads/june-20th-mandatory-update-details-hard-fork.1355/



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

Activity: 294
Merit: 250


View Profile
June 19, 2014, 03:51:53 AM
Last edit: June 19, 2014, 04:32:44 AM by chaeplin
 #36784

I don't understand, is that a yes?

Sorry for being confusing, I thought I slept enough last night, but I've literally been falling asleep everywhere I go today, LOL.

Yes, port 9999 needs to be open.  If you have a router or firewall it may be blocking it?

If your MN private key is from the remote wallet as you stated in the original post, I believe you can get the same error message.  Or at least I remember something like that happening.  My memory = sh*t though, so Huh?

And yes, I probably did repeat myself, when I'm tired like I am now, I get muddled, sorry about that. Edited 'cause I literally did it again, LOL Cheesy


When you type darkcoind masternode start `head -1` or darkcoind masternode start passphrase_of_wallet in local,
local darkcoind actively connects remote(port 9999) to check it's opened.

As local - remote setup is equal to cold - hot setup, checking local/cold's port 9999 is not needed.
(But both wallet should be fully synced, so run 'masternode start' after syncing is completed)

@illodin Before starting masternode, check whether remote machine is connected with local.
netstat -an | grep remore_ip

If your remote has iptables rule described in https://www.darkcointalk.org/threads/how-to-set-up-ec2-t1-micro-ubuntu-for-masternode-part-2-3.241/ ,
it limits concurrent connection to port 9999 ( uniq ip : 2 , uniq c class : total 8 )

When "inbound port is not open. Please open it and try again. (19999 for testnet and 9999 for mainnet)" is appeard,
following test step would be best practice.

1) stop local darkcoind
darkcoind stop

2) check whether another darkcoind is running at local
ps -ef | grep dark

3) test remote 9999 port
telnet remoteip 9999

  * if port 9999 is not opened, check iptables, ec2 security-groups of remote.
  * opened ? "Houston, We Have a Problem"



My test result(testnet)
Iptables deny outbound connection to remote ip
Code:
#-----
*filter
:INPUT ACCEPT [1038:145425]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [434:87191]
#
-A INPUT -i lo -j ACCEPT
#
-A INPUT -p tcp -m tcp -m state --state RELATED,ESTABLISHED -j ACCEPT
-A INPUT -p tcp -m tcp --dport 22 -s 192.168.0.0/24 -m state --state NEW -j ACCEPT
-A INPUT -p tcp -m tcp -j DROP
-A OUTPUT -p tcp -m tcp -d 54.xxx.xxx.242 --dport 19999 -j DROP
#
COMMIT
#-----

Code:
ms06@x60t:~> darkcoind masternode start passbla
inbound port is not open. Please open it and try again. (19999 for testnet and 9999 for mainnet)

'-A OUTPUT -p tcp -m tcp -d 54.xxx.xxx.242 --dport 19999 -j DROP' is removed
Code:
ms06@x60t:~> darkcoind masternode start passbla
successfully started masternode

remote log
Code:
2014-06-19 04:15:35 accepted connection myhomeip:59691
2014-06-19 04:15:36 send version message: version 70018, blocks=21884, us=54.xxx.xxx.242:19999, them=myhomeip:59691, peer=myhomeip:59691
2014-06-19 04:15:36 receive version message: /Satoshi:0.10.10.1/: version 70018, blocks=21884, us=54.xxx.xxx.242:19999, them=0.0.0.0:0, peer=myhomeip:59691
2014-06-19 04:15:36 CDarkSendPool::EnableHotColdMasterNode() - Enabled! You may shut down the cold daemon
newb4now
Hero Member
*****
Offline Offline

Activity: 686
Merit: 500


View Profile
June 19, 2014, 04:37:26 AM
 #36785

I just cancelled all my sell orders.

RC3 has withstood extensive testing on the testnet.

I am really looking forward to the hardfork and coming MN payments.

I doubt DRK will be this cheap much longer....
luke997
Full Member
***
Offline Offline

Activity: 294
Merit: 100


View Profile
June 19, 2014, 05:40:54 AM
 #36786

I just cancelled all my sell orders.
RC3 has withstood extensive testing on the testnet.
I am really looking forward to the hardfork and coming MN payments.
I doubt DRK will be this cheap much longer....

I completely stopped trading few days ago and just keep accumulating.
Like you said, we won't see these prices any more soon.
Icebucket
Sr. Member
****
Offline Offline

Activity: 409
Merit: 250


View Profile
June 19, 2014, 05:43:31 AM
 #36787


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

Activity: 140
Merit: 100


View Profile
June 19, 2014, 06:42:40 AM
 #36788

I just cancelled all my sell orders.

RC3 has withstood extensive testing on the testnet.

I am really looking forward to the hardfork and coming MN payments.

I doubt DRK will be this cheap much longer....



this is getting better and better

https://www.youtube.com/watch?v=PmRJKstnw6k

thelonecrouton
Legendary
*
Offline Offline

Activity: 966
Merit: 1000


View Profile
June 19, 2014, 07:05:39 AM
 #36789

Masternode count rising nicely on mainnet, ~240 right now, 30 hours to go.
louiseth1
Legendary
*
Offline Offline

Activity: 924
Merit: 1000


Bitfarms.io


View Profile WWW
June 19, 2014, 07:05:44 AM
Last edit: June 19, 2014, 07:20:57 AM by louiseth1
 #36790



IMPORTANT ANNOUNCEMENT!

We will proceed in a few minutes to the migration of our DarkCoin pool as the base of our new SuchPool SSO!

The pool will have a ton more feature, and the migration will be complete for all the DarkCoin users. Your passwords will stay the same, workers, statistics, balances, pending payouts.

The only downturn in this is that we have to shutdown stratums the time we are migrating the database, which we estimate will take from 10 to 15 minutes.

YOU WILL ALSO HAVE TO RE-ENTER YOUR PAYOUT ADDRESS since we are now using a central database for all user accounts. WE DID NOT MOVE THEM to make sure no mixup happens and your coins get sent to somebody else.

Stratums will use the same ports, and pool will be reachable at http://Dark.SuchPool.pw

Thank you all for mining with us! We hope you will like our new dashboard! Smiley


Bitfarms.io - Powering Blockchains with Sustainable Energy
splawik21
Legendary
*
Offline Offline

Activity: 1372
Merit: 1005


DASH is the future of crypto payments!


View Profile
June 19, 2014, 07:40:54 AM
 #36791

these small sell amounts of drk is not a bot (meaby too) but are all different multipools who sell drk for btc to buy the coins which they want to like MIN does since today...

BE SMART, USE DASH ( ͡° ͜ʖ ͡°)
louiseth1
Legendary
*
Offline Offline

Activity: 924
Merit: 1000


Bitfarms.io


View Profile WWW
June 19, 2014, 08:33:39 AM
Last edit: June 20, 2014, 04:48:55 AM by louiseth1
 #36792



Migration 100% completed!

Our move to the SuchPool SSO has been done without any issue!

Come see the new pool at http://SuchPool.pw/drk

All your stats/shares/coins/pending payouts/workers have been restored on the new version! All the pools we will add on this platform will share the same logins, so on new launches you may simply move your miners on our different ports hosted under SuchPool SSO and your coins will be delivered in your accounts!

** YOU WILL NEED TO RE-ENTER YOUR PAYOUT ADDRESSES **

Here is a sneak peak at our new interface! Come and login to see it in operation. If you have no account, it's time to register!


If you notice any issue, or want to make some comments, feel free to drop us an email at support@suchpool.pw! We are there for you!

We would like to thank you all for making this pool one of the Biggest and Greatest Darkcoin pools ever!

To reach us:

    URL: http://www.suchpool.pw
    Email: support@suchpool.pw
    IRC: irc.freenode.net - #suchpool
    Twitter: @SuchPool
    Support: Support.SuchPool.pw


Bitfarms.io - Powering Blockchains with Sustainable Energy
alganonim
Sr. Member
****
Offline Offline

Activity: 260
Merit: 250



View Profile
June 19, 2014, 08:40:48 AM
 #36793

Not sure if anyone else noticed, on Bitcoinwisdom we've broken out of the traingle.
Low support trend line held at all times, and 10h ago we first broke through the down trend line, in past couple hours we're over it, with a very strong buy support and pretty much non-existent selling pressure.
MA looks great too.

In short, time to buy @ 0.016 is over, no more cheap DRK, we're going up in a major way.

Looking forward to what Toknormal has to say on this  Smiley

Hello , I'm new in crypto but trying to learn someting here. I draw this few days ago to be sure when to exit if something goes wrong.

In 1W scale it looks like it was close to cross lower boundery, and like someone try to help us here in a dangerous moments Wink



Zoom



Correct me if I'm imagining things ...
Bleeckerpub
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
June 19, 2014, 09:03:26 AM
 #36794

HOLD HOLD HOLD the price had been fairly stable relative, dunno what people are worrying about.
predatorkill
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
June 19, 2014, 09:07:00 AM
 #36795

HOLD HOLD HOLD the price had been fairly stable relative, dunno what people are worrying about.

who's worrying? We are just speculating the price and market orientation Smiley

BrainShutdown
Legendary
*
Offline Offline

Activity: 1052
Merit: 1004



View Profile
June 19, 2014, 09:11:17 AM
 #36796

Here's my quick and dirty Greasemonkey/Tampermonkey script for the lazy ones Grin to filter selected masternodes from chaeplin's great status page http://drk.poolhash.org/masternode.html

Code:
// ==UserScript==
// @name       Mastenode Watcher
// @namespace  http://drk.poolhash.org/masternode.html
// @version    0.2
// @match      http://drk.poolhash.org/masternode.html
// @author   BrainShutdown
//
//
// ==/UserScript==

//UPDATE THE FOLLOWING ARRAY WITH YOUR PARTIAL MASTERNODE IP'S EXACTLY AS THEY SHOW ON THE ORIGINAL PAGE
var masternodes = ['_._.XXX.XXX', '_._.XXX.XXX'];

$(document).ready(function() {
  HideStatic();
});

//Each auto-refresh initiates the filtering    
$(document).on('update_blocks', function(e, eventInfo) {
WaitForIt();
});

//Hides static page elements
function HideStatic()
{
    document.getElementById("ribbon").style.display = "none";
    document.getElementById("country").style.display = "none";
    document.getElementById("isp").style.display = "none";
    document.getElementById("darksend").style.display = "none";
    
    document.getElementsByTagName("center")[0].style.display = "none";
    document.getElementsByTagName("table")[1].style.display = "none";  
    
    document.getElementsByTagName("table")[0].style.height = "100px";
}

//Waits for table loading
function WaitForIt()
{
    if(document.getElementsByTagName("table")[0].getElementsByTagName('tr').length == 1)
    {
     window.setTimeout(WaitForIt,2);
    }
    else
    {
        HideRows();
    }  
}

//Hides rows that doesn't match our masternodes
function HideRows()
{  
    var rows = document.getElementsByTagName("table")[0].getElementsByTagName('tr');
    
    for ( i = 1; i < rows.length; ++i) {
        if($.inArray(rows[i].id, masternodes) == -1)
        {
         rows[i].style.display = 'none';
        }
    }

}

Just modify
Code:
var masternodes = ['_._.XXX.XXX', '_._.XXX.XXX'];
to suit your needs. Enjoy  Cool

All credits go to chaeplin for putting up some awesome status pages  Wink

Spratan
Hero Member
*****
Offline Offline

Activity: 689
Merit: 507


View Profile
June 19, 2014, 09:14:22 AM
 #36797

1/ Is there an "official" list of reputable consultants for setting-up and occasionnaly manage Masternodes ?

I don't have time nor skill and I don't want to make mistakes.

2/ By the way, I expect the price to be 0.10 BTC within 2 weeks. Whales won't sell.
Better to accumulate, counpound returns and have more MN than selling.

Thanks
splawik21
Legendary
*
Offline Offline

Activity: 1372
Merit: 1005


DASH is the future of crypto payments!


View Profile
June 19, 2014, 09:37:13 AM
 #36798

1/ Is there an "official" list of reputable consultants for setting-up and occasionnaly manage Masternodes ?

I don't have time nor skill and I don't want to make mistakes.

2/ By the way, I expect the price to be 0.10 BTC within 2 weeks. Whales won't sell.
Better to accumulate, counpou
nd returns and have more MN than selling.

Thanks
talk with Ozzicoin for MN setup etc.
or wirh DyslexicZombie

BE SMART, USE DASH ( ͡° ͜ʖ ͡°)
predatorkill
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
June 19, 2014, 09:38:01 AM
 #36799

1/ Is there an "official" list of reputable consultants for setting-up and occasionnaly manage Masternodes ?

I don't have time nor skill and I don't want to make mistakes.

Thanks

go back a few pages and you will find 1-2 members that will do it for you.

GhostPlayer
Legendary
*
Offline Offline

Activity: 1092
Merit: 1000


View Profile
June 19, 2014, 09:38:11 AM
 #36800

1/ Is there an "official" list of reputable consultants for setting-up and occasionnaly manage Masternodes ?

I don't have time nor skill and I don't want to make mistakes.

2/ By the way, I expect the price to be 0.10 BTC within 2 weeks. Whales won't sell.
Better to accumulate, counpound returns and have more MN than selling.

Thanks

The ramp-up has begun. Current Masternode count 243 (last fork was 400!)

That means, at the very least, right here right now;

1 Masternode costs = 10,400 USD
Active Darkcoin PoS = 2,513.972 USD (probably double, but not active yet!)



Pages: « 1 ... 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 [1840] 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 ... 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!