Pages:
Author

Topic: [DOX] [Get Dox?] [Pure PoS] [3 exchanges, bittrex,yobit, empoex] [Beta2 roadmap] - page 13. (Read 18837 times)

hero member
Activity: 574
Merit: 500
addnode=52.5.37.221
addnode=54.191.115.210
sr. member
Activity: 459
Merit: 250
Wallet no sync. Any nodes please?
Code:
addnode=52.5.37.221
addnode=54.191.115.210
addnode=52.5.37.221:3577
addnode=54.191.115.210:3577
addnode=84.54.169.110:57571
addnode=37.123.187.99:60263
addnode=195.154.146.221:47218
addnode=98.198.26.41:56151
addnode=[2001:0:5ef5:79fd:28b2:3576:abc9:5691]:3577
addnode=[2001:0:5ef5:79fd:388e:bf6:da84:449c]:3577
addnode=188.166.126.70:46876
addnode=[2001:0:9d38:6ab8:45a:2f82:cbfa:da22]:54779
addnode=[2001:0:9d38:90d7:a1:2548:c940:8c2d]:54620
addnode=46.176.48.178:52031
addnode=[2001:0:9d38:90d7:c5a:346:3843:4980]:61087
addnode=[2001:0:5ef5:79fb:3886:3169:876d:1197]:3577
addnode=120.146.238.104:54809
addnode=76.26.82.101:59070
addnode=[2001:0:5ef5:79fb:30e9:1b3c:b3e5:ad9a]:3577
addnode=[2001:0:9d38:90d7:285a:19ee:bb9f:40fa]:3577
addnode=68.96.191.5:51948
addnode=82.149.20.231:52959
addnode=114.96.238.99:41089
addnode=24.162.155.253:57738
addnode=[2001:0:5ef5:79fd:34e6:3901:4da0:4c7d]:53809
addnode=184.91.27.213:59076
addnode=75.130.163.51:55050
newbie
Activity: 21
Merit: 0
Wallet no sync. Any nodes please?

Found them, my bad.
sr. member
Activity: 272
Merit: 310
4000 * 150 = 600 000 POW

minus 149 coins for each PoS block that happens.
hero member
Activity: 574
Merit: 500
sr. member
Activity: 272
Merit: 310
PoS blocks are flying. The reward is 1. Each one that replaces a normal block means 149 less total coins. This could be a really low total coin count!
sr. member
Activity: 459
Merit: 250
i've got my first POS block Smiley
hero member
Activity: 574
Merit: 500
{
"blocks" : 880,
"currentblocksize" : 0,
"currentblocktx" : 0,
"difficulty" : {
"proof-of-work" : 341.89851233,
"proof-of-stake" : 0.00001526,
"search-interval" : 0
},
"blockvalue" : 15000000000,
"netmhashps" : 34149.83555827,
"netstakeweight" : 0.00000000,
"errors" : "",
"pooledtx" : 0,
"stakeweight" : {
"minimum" : 0,
"maximum" : 0,
"combined" : 0
},
"testnet" : false
}
hero member
Activity: 560
Merit: 500
Am i broke yet?
The fud is so strong the the threads lately.
hero member
Activity: 994
Merit: 503
Need a block explorer .

It could also just die. That'd be equally as preferable.

Hopefully you take your own advice, and make the world a better place.
legendary
Activity: 1190
Merit: 1002
can you correct windows wallet link in OP it is pointing out to your github trunctured file page or may be im having to much of forking now a days
Hit the RAW tab will download wallet.
legendary
Activity: 896
Merit: 1000
Need a block explorer .

It could also just die. That'd be equally as preferable.
legendary
Activity: 1162
Merit: 1000
Decentralizing Jesus on the Blockchain
can you correct windows wallet link in OP it is pointing out to your github trunctured file page or may be im having to much of forking now a days
hero member
Activity: 560
Merit: 500
Am i broke yet?
member
Activity: 107
Merit: 10
Is there a setting for when pos starts?  if so can you point it out?

POS on Crave-like coins would be active starting from block zero typically, not according to a "setting for when pos starts".

Thanks for the info.
legendary
Activity: 1050
Merit: 1000
Mine the hottest new coins at ipoMiner.com
Is there a setting for when pos starts?  if so can you point it out?

POS on Crave-like coins would be active starting from block zero typically, not according to a "setting for when pos starts".
member
Activity: 107
Merit: 10
I was just looking over the code.  This looks like a p7coin clone.   The problem i see is that POW just lasts forever.  This code does not have the switch over to POS.  I know the code for the pos blocks exist in the main.cpp file but nothing is set to switch from pow to pos.

Did you ?

https://github.com/doxtyphon/Doxcoin/blob/master/src/chainparams.cpp#L98

Code:
 nLastPOWBlock = 4000;

https://github.com/doxtyphon/Doxcoin/blob/master/src/main.cpp#L2015-L2016

Code:
    if (IsProofOfWork() && nHeight > Params().LastPOWBlock())
        return DoS(100, error("AcceptBlock() : reject proof-of-work at height %d", nHeight));

my bad.   i was looking for the older MODIFIER_INTERVAL_SWITCH

thanks for showing me.  Smiley

You look at old school scrypt pos coin, ahhaha.

Is there a setting for when pos starts?  if so can you point it out?
hero member
Activity: 574
Merit: 500
Obviously it's forked from Crave.
member
Activity: 107
Merit: 10
I was just looking over the code.  This looks like a p7coin clone.   The problem i see is that POW just lasts forever.  This code does not have the switch over to POS.  I know the code for the pos blocks exist in the main.cpp file but nothing is set to switch from pow to pos.

Did you ?

https://github.com/doxtyphon/Doxcoin/blob/master/src/chainparams.cpp#L98

Code:
 nLastPOWBlock = 4000;

https://github.com/doxtyphon/Doxcoin/blob/master/src/main.cpp#L2015-L2016

Code:
    if (IsProofOfWork() && nHeight > Params().LastPOWBlock())
        return DoS(100, error("AcceptBlock() : reject proof-of-work at height %d", nHeight));

my bad.   i was looking for the older MODIFIER_INTERVAL_SWITCH

thanks for showing me.  Smiley
member
Activity: 107
Merit: 10
I was just looking over the code.  This looks like a p7coin clone.   The problem i see is that POW just lasts forever.  This code does not have the switch over to POS.  I know the code for the pos blocks exist in the main.cpp file but nothing is set to switch from pow to pos.
Pages:
Jump to: