Pages:
Author

Topic: FonzieCoin [FONZ] (was XFC) Now Pure PoS; Fair Launch; No ICO, No Insta/Premine - page 26. (Read 36015 times)

full member
Activity: 201
Merit: 100

DELAY: 1 hour

It's looking like we are going to have to delay one hour to test. New launch time is 8:30 AM UTC.
full member
Activity: 139
Merit: 100
Hi
FonzieCoin Team
I have added your project to the newcoin list on  8btc forum:http://8btc.com/forum.php?mod=redirect&goto=findpost&ptid=13070&pid=94968&fromuid=9624
8btc is the most famous crypto currency forum in China.
Join us ,Talk about Bitcoin or your coin,
With QQ Group:368826530 QQ:1771376738
(QQ is the most popular Chat APP in China:http://www.imqq.com/)
Also welcome to my Twitter:https://twitter.com/ForAllCoins
Best regards!
hero member
Activity: 582
Merit: 500
Suprnova.cc getting ddos'd???  xfz.suprnova.cc  back up
hero member
Activity: 574
Merit: 500
( ͡° ͜ʖ ͡°)
Alright dev, good luck, I'll be ready for relaunch Wink

Cheers!
full member
Activity: 201
Merit: 100
Added to https://www.altcoincalendar.info/calendar

When it is approved by an admin, it should appear in the calender.
hero member
Activity: 658
Merit: 507
Passive Income Bot Trading
See you at Launch time. ManhattanMine will be alert!
Good Luck!
full member
Activity: 201
Merit: 100
LAUNCH TIME CONVERSIONS

Because of daylight savings, there might be some confusion about launch.

First, the time has moved to

7:30 AM UTC March 9

Make sure you convert that. To my best ability to convert it, here it is in the US Time zones (except for AZ, I think who don't engage in this nonsense):

https://www.timeanddate.com/worldclock/converter.html

Code:
UTC (Time Zone)                   Monday, March 9, 2015 at 7:30:00 AM      UTC            
New York (U.S.A. - New York)      Monday, March 9, 2015 at 3:30:00 AM  EDT UTC-4 hours    
Austin (U.S.A. - Texas)           Monday, March 9, 2015 at 2:30:00 AM  CDT UTC-5 hours    
Denver (U.S.A. - Colorado)        Monday, March 9, 2015 at 1:30:00 AM  MDT UTC-6 hours
Phoenix (U.S.A. - Arizona)        Monday, March 9, 2015 at 12:30:00 AM MST UTC-7 hours      
Los Angeles (U.S.A. - California) Monday, March 9, 2015 at 12:30:00 AM PDT UTC-7 hours    
Tokyo (Japan)                     Monday, March 9, 2015 at 4:30:00 PM  JST UTC+9 hours    
Kathmandu (Nepal)                 Monday, March 9, 2015 at 1:15:00 PM  NPT UTC+5:45 hours
Istanbul (Turkey)                 Monday, March 9, 2015 at 9:30:00 AM  EET UTC+2 hours    
Lisbon (Portugal)                 Monday, March 9, 2015 at 7:30:00 AM  WET UTC
full member
Activity: 201
Merit: 100
Ill give it a try in about an hour

Even with the new genesis it is still stuck on block 1. Could this be a problem with stratum? This was cloned from an X-something (11, 13?) and converted to SHA-256d. Might stratum itself be rejecting the blocks?


No it is a diff /Target issue.

Just do a 'getwork' and you will see Target is 0000000000000..  A matching block can never be found (has to be smaller than Target)

I will have a close Look a little later

Yeah, it's a retarget issue.

I got it. This is real embarrassing.

Code:
CBigNum bnTargetLimit;
    if (fTestNet) {
          CBigNum bnTargetLimit = bnTestTarget; // PoS & PoW limits are same on testnet
    } else {
          CBigNum bnTargetLimit = fProofOfStake ? bnProofOfStakeLimit : bnProofOfWorkLimit;
    }

Notice how I re-initialize CBugNum in the conditional, that makes the outer CBigNum 0 always. I'm not sure why I did that. I probably copied the original line and forgot to remove the initializers.

It should be

Code:
CBigNum bnTargetLimit;
    if (fTestNet) {
          bnTargetLimit = bnTestTarget; // PoS & PoW limits are same on testnet
    } else {
          bnTargetLimit = fProofOfStake ? bnProofOfStakeLimit : bnProofOfWorkLimit;
    }

Do we want to try again at Mar. 9 UTC 7:30 AM, or stick with Mar. 10? I'd like to launch earlier. I have a functional test net so I'll mine on the testnet before launch to make sure it's working.

We'll do it if we get 6 votes yes.



I hope you will update the github to Smiley

I'm going to make a commit with a few changes. I'm going to move that ill-advised testnet junk out of GetNextTargetRequired_. I have a some mac-specific changes that need to go in. I'll update git in a couple of hours and then do my tests today. I think it's looking like we'll go with a launch for Mar. 9 UTC 7:30 AM (Mar. 9 PDT 12:30 AM). I'll change I've changed the OP.
legendary
Activity: 2688
Merit: 1240
You're right, looks good now:

./fonziecoind getwork

    "target" : "00000000000000000000000000000000000000000000000000958d0100000000"


Should I fire up the stratums ? :-)

I'm kind of busy today with family stuff. Also this is supposed to be fair. I don't want screaming from the gallows. How about in a few hours. I'll post a time. I'd really rather not blow the whole fairness thing just trying to get it launched.


Sure no prob, just let me/us know when you want to launch, I'm around

While your here 10k.suprnova.cc is down btw

Hmm, was it closed longer than 14 days ago ? Then it has been auto-cleaned.

EDIT: Yep, its wiped
legendary
Activity: 1722
Merit: 1000
Admin of CoinMiners Pools
Ill give it a try in about an hour

Even with the new genesis it is still stuck on block 1. Could this be a problem with stratum? This was cloned from an X-something (11, 13?) and converted to SHA-256d. Might stratum itself be rejecting the blocks?


No it is a diff /Target issue.

Just do a 'getwork' and you will see Target is 0000000000000..  A matching block can never be found (has to be smaller than Target)

I will have a close Look a little later

Yeah, it's a retarget issue.

I got it. This is real embarrassing.

Code:
CBigNum bnTargetLimit;
    if (fTestNet) {
          CBigNum bnTargetLimit = bnTestTarget; // PoS & PoW limits are same on testnet
    } else {
          CBigNum bnTargetLimit = fProofOfStake ? bnProofOfStakeLimit : bnProofOfWorkLimit;
    }

Notice how I re-initialize CBugNum in the conditional, that makes the outer CBigNum 0 always. I'm not sure why I did that. I probably copied the original line and forgot to remove the initializers.

It should be

Code:
CBigNum bnTargetLimit;
    if (fTestNet) {
          bnTargetLimit = bnTestTarget; // PoS & PoW limits are same on testnet
    } else {
          bnTargetLimit = fProofOfStake ? bnProofOfStakeLimit : bnProofOfWorkLimit;
    }

Do we want to try again at Mar. 9 UTC 7:30 AM, or stick with Mar. 10? I'd like to launch earlier. I have a functional test net so I'll mine on the testnet before launch to make sure it's working.

We'll do it if we get 6 votes yes.



I hope you will update the github to Smiley
sr. member
Activity: 1638
Merit: 251
Hexhash.xyz
You're right, looks good now:

./fonziecoind getwork

    "target" : "00000000000000000000000000000000000000000000000000958d0100000000"


Should I fire up the stratums ? :-)

I'm kind of busy today with family stuff. Also this is supposed to be fair. I don't want screaming from the gallows. How about in a few hours. I'll post a time. I'd really rather not blow the whole fairness thing just trying to get it launched.


Sure no prob, just let me/us know when you want to launch, I'm around

While your here 10k.suprnova.cc is down btw
sr. member
Activity: 1638
Merit: 251
Hexhash.xyz
Good stuff I don't mind waiting. What to mine till then..... EmoneyCoin, i guess
legendary
Activity: 2688
Merit: 1240
You're right, looks good now:

./fonziecoind getwork

    "target" : "00000000000000000000000000000000000000000000000000958d0100000000"


Should I fire up the stratums ? :-)

I'm kind of busy today with family stuff. Also this is supposed to be fair. I don't want screaming from the gallows. How about in a few hours. I'll post a time. I'd really rather not blow the whole fairness thing just trying to get it launched.


Sure no prob, just let me/us know when you want to launch, I'm around
full member
Activity: 201
Merit: 100
You're right, looks good now:

./fonziecoind getwork

    "target" : "00000000000000000000000000000000000000000000000000958d0100000000"


Should I fire up the stratums ? :-)

I'm kind of busy today with family stuff. Also this is supposed to be fair. I don't want screaming from the gallows. How about in a few hours. I'll post a time. I'd really rather not blow the whole fairness thing just trying to get it launched.
sr. member
Activity: 1638
Merit: 251
Hexhash.xyz
XCO over lets gogogogogogogogo!
legendary
Activity: 2688
Merit: 1240
You're right, looks good now:

./fonziecoind getwork

    "target" : "00000000000000000000000000000000000000000000000000958d0100000000"


Should I fire up the stratums ? :-)
hero member
Activity: 550
Merit: 500
I can launch NOW if you want to .. Smiley

Xcoin ends, so this is where I would point my rigs at

I'm ready too, same port ?
legendary
Activity: 2688
Merit: 1240
I can launch NOW if you want to .. Smiley

Xcoin ends, so this is where I would point my rigs at
full member
Activity: 201
Merit: 100
Ill give it a try in about an hour

Even with the new genesis it is still stuck on block 1. Could this be a problem with stratum? This was cloned from an X-something (11, 13?) and converted to SHA-256d. Might stratum itself be rejecting the blocks?


No it is a diff /Target issue.

Just do a 'getwork' and you will see Target is 0000000000000..  A matching block can never be found (has to be smaller than Target)

I will have a close Look a little later

Yeah, it's a retarget issue.

I got it. This is real embarrassing.

Code:
CBigNum bnTargetLimit;
    if (fTestNet) {
          CBigNum bnTargetLimit = bnTestTarget; // PoS & PoW limits are same on testnet
    } else {
          CBigNum bnTargetLimit = fProofOfStake ? bnProofOfStakeLimit : bnProofOfWorkLimit;
    }

Notice how I re-initialize CBugNum in the conditional, that makes the outer CBigNum 0 always. I'm not sure why I did that. I probably copied the original line and forgot to remove the initializers.

It should be

Code:
CBigNum bnTargetLimit;
    if (fTestNet) {
          bnTargetLimit = bnTestTarget; // PoS & PoW limits are same on testnet
    } else {
          bnTargetLimit = fProofOfStake ? bnProofOfStakeLimit : bnProofOfWorkLimit;
    }

Do we want to try again at Mar. 9 UTC 7:30 AM, or stick with Mar. 10? I'd like to launch earlier. I have a functional test net so I'll mine on the testnet before launch to make sure it's working.

We'll do it if we get 6 votes yes.

legendary
Activity: 2688
Merit: 1240
Ill give it a try in about an hour

Even with the new genesis it is still stuck on block 1. Could this be a problem with stratum? This was cloned from an X-something (11, 13?) and converted to SHA-256d. Might stratum itself be rejecting the blocks?


No it is a diff /Target issue.

Just do a 'getwork' and you will see Target is 0000000000000..  A matching block can never be found (has to be smaller than Target)

I will have a close Look a little later
Pages:
Jump to: