Cryptour (OP)
|
|
December 27, 2014, 08:05:37 PM Last edit: March 03, 2015, 03:04:57 AM by Cryptour |
|
SquareBit is a new platform for goods and decentralized Crypto Currency trading. INFORMATION____________________________________ | _ | Ticker: SBIT | PoW block reward: | Algo : X11 | Block 1: 40,000 SBIT | Total coins : 2 million | Block 2 - 100: 0 | PoW timespan : 7 days | Block 101 -1440: 400 | Pre-mine : 2% | Block 1441-2880: 200 | IPO : none | Block 2881-4320: 150 | Block time: 60 seconds | Block 4321-5760: 100 | POW over after block 10080 | Block 5761-7200: 62.5 | PoS 3% min stake age: 4 hours | Block 7201-8640: 50 | PoS Max age : 30 days | Block 8641-10080: 62.5 |
SOURCENEW WALLETSSquareBit.conf server=1 daemon=1 listen=1 maxconnections=1024 rpcuser=user rpcpassword=pass rpcport=32951 POOLSBLOCKCHAIN EXPLORER
|
|
|
|
ocminer
Legendary
Offline
Activity: 2688
Merit: 1240
|
|
December 27, 2014, 08:06:02 PM |
|
Hey hey EDIT Compiling now ! EDIT #2: Please add https://sbit.suprnova.cc to the list of pools !
|
suprnova pools - reliable mining pools - #suprnova on freenet https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
|
|
|
KeyserSozeMC
|
|
December 27, 2014, 08:06:03 PM |
|
NINJA! Miss good ol' ninjas, renting hashes ocminer, 1 second. agh!
|
Hey, smexy. Don't waste your time. Time's precious.
|
|
|
whywefight
Legendary
Offline
Activity: 1078
Merit: 1042
www.explorerz.top
|
|
December 27, 2014, 08:07:51 PM |
|
Hey hey
EDIT
Compiling now !
go go go!!!
|
|
|
|
ocminer
Legendary
Offline
Activity: 2688
Merit: 1240
|
|
December 27, 2014, 08:11:10 PM |
|
Suprnova is UP !
|
suprnova pools - reliable mining pools - #suprnova on freenet https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
|
|
|
KeyserSozeMC
|
|
December 27, 2014, 08:11:36 PM |
|
Just saw. Block 2 - 100: 0
That's a turnoff No instamine. Still, going to mine.
|
Hey, smexy. Don't waste your time. Time's precious.
|
|
|
whywefight
Legendary
Offline
Activity: 1078
Merit: 1042
www.explorerz.top
|
|
December 27, 2014, 08:12:04 PM |
|
Suprnova is UP !
am i blind???
|
|
|
|
ocminer
Legendary
Offline
Activity: 2688
Merit: 1240
|
|
December 27, 2014, 08:13:30 PM |
|
Suprnova is UP !
am i blind??? look at my post from above
|
suprnova pools - reliable mining pools - #suprnova on freenet https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
|
|
|
WhyMe
|
|
December 27, 2014, 08:14:14 PM |
|
i'm in
|
|
|
|
whywefight
Legendary
Offline
Activity: 1078
Merit: 1042
www.explorerz.top
|
|
December 27, 2014, 08:19:22 PM |
|
Suprnova is UP !
am i blind??? look at my post from above thx that is why i love supernova
|
|
|
|
KeyserSozeMC
|
|
December 27, 2014, 08:19:35 PM |
|
virus check Checked it. Looks ok @ my end.
|
Hey, smexy. Don't waste your time. Time's precious.
|
|
|
minerpools
|
|
December 27, 2014, 08:19:48 PM |
|
Is it late to join?
|
|
|
|
DeCrypterManiac
|
|
December 27, 2014, 08:20:00 PM |
|
Hmm, the OP says block reward 400, but supernova pay 500 ?
|
|
|
|
ocminer
Legendary
Offline
Activity: 2688
Merit: 1240
|
|
December 27, 2014, 08:20:28 PM |
|
Is it late to join? never too late, hop in
|
suprnova pools - reliable mining pools - #suprnova on freenet https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
|
|
|
ocminer
Legendary
Offline
Activity: 2688
Merit: 1240
|
|
December 27, 2014, 08:22:17 PM |
|
Hmm, the OP says block reward 400, but supernova pay 500 ? Sorry, thats nothing i have control of, this is from the code: // miner's coin base reward int64_t GetProofOfWorkReward(int64_t nFees) { int64_t nSubsidy = 0 * COIN; if (pindexBest->nHeight+1 == 1) { nSubsidy = 40000 * COIN; return nSubsidy + nFees; } else if (pindexBest->nHeight+1 <= 100) { nSubsidy = 0 * COIN; return nSubsidy + nFees; } else if (pindexBest->nHeight+1 <= 720) { nSubsidy = 500 * COIN; return nSubsidy + nFees; } else if (pindexBest->nHeight+1 <= 1440) { nSubsidy = 400 * COIN; return nSubsidy + nFees; } else if (pindexBest->nHeight+1 <= 2880) { nSubsidy = 200 * COIN; return nSubsidy + nFees; } else if (pindexBest->nHeight+1 <= 4320) { nSubsidy = 150 * COIN; return nSubsidy + nFees; }
else if (pindexBest->nHeight+1 <= 5760) { nSubsidy = 100 * COIN; return nSubsidy + nFees; } else if (pindexBest->nHeight+1 <= 7200) { nSubsidy = 62.5 * COIN; return nSubsidy + nFees; } else if (pindexBest->nHeight+1 <= 8640) { nSubsidy = 50 * COIN; return nSubsidy + nFees; } else if (pindexBest->nHeight+1 <= 10080) { nSubsidy = 62.5 * COIN; return nSubsidy + nFees; } else { nSubsidy = 0 * COIN; return nSubsidy + nFees; } if (fDebug && GetBoolArg("-printcreation")) printf("GetProofOfWorkReward() : create=%s nSubsidy=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nSubsidy); return nSubsidy + nFees; } Looks like the dev forgot one section
|
suprnova pools - reliable mining pools - #suprnova on freenet https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
|
|
|
anhpt192
|
|
December 27, 2014, 08:28:22 PM |
|
i'm in
|
|
|
|
ocminer
Legendary
Offline
Activity: 2688
Merit: 1240
|
|
December 27, 2014, 08:29:01 PM |
|
any europe pool, my rigs not connecting to supernova.
Hmm, which error do you get ?
|
suprnova pools - reliable mining pools - #suprnova on freenet https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
|
|
|
KeyserSozeMC
|
|
December 27, 2014, 08:29:05 PM |
|
|
Hey, smexy. Don't waste your time. Time's precious.
|
|
|
tylerderden
Copper Member
Legendary
Offline
Activity: 1162
Merit: 1025
|
|
December 27, 2014, 08:32:41 PM |
|
so why are these bits square again?
|
|
|
|
KrLos
|
|
December 27, 2014, 08:38:05 PM |
|
Mining now!
Let's see what this coin brings
|
|
|
|
|