ocminer
Legendary
Offline
Activity: 2688
Merit: 1240
|
|
December 31, 2014, 01:19:36 PM |
|
addnode=tux.suprnova.cc addnode=37.59.18.108 Pool: https://tux.suprnova.ccEDIT: Wallet seems not to connect, looking through the Code now
|
suprnova pools - reliable mining pools - #suprnova on freenet https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
|
|
|
utclover (OP)
|
|
December 31, 2014, 01:24:35 PM |
|
thank you i added it to the op
|
|
|
|
RJX
Legendary
Offline
Activity: 1078
Merit: 1003
|
|
December 31, 2014, 01:24:44 PM |
|
oh the suspense!
|
|
|
|
ocminer
Legendary
Offline
Activity: 2688
Merit: 1240
|
|
December 31, 2014, 01:25:33 PM |
|
|
suprnova pools - reliable mining pools - #suprnova on freenet https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
|
|
|
utclover (OP)
|
|
December 31, 2014, 01:28:46 PM |
|
yes its mine but i am still setting it up
|
|
|
|
ocminer
Legendary
Offline
Activity: 2688
Merit: 1240
|
|
December 31, 2014, 01:30:41 PM |
|
yes its mine but i am still setting it up OK, for some reason the wallet listens on IPv6 only for me, it works if you do: addnode=2001:41d0:8:656c:: It should sync up to that node once your node is up too
|
suprnova pools - reliable mining pools - #suprnova on freenet https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
|
|
|
moko666
|
|
December 31, 2014, 01:30:51 PM |
|
you don't even have wallet at launch why so rush better you launch it with some innovation and all OS wallet even if it take you few more days
|
|
|
|
ocminer
Legendary
Offline
Activity: 2688
Merit: 1240
|
|
December 31, 2014, 01:32:37 PM |
|
The Pool is up now and finding blocks, it should sync up to your node once you bring it up
|
suprnova pools - reliable mining pools - #suprnova on freenet https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
|
|
|
shimlbit
Legendary
Offline
Activity: 1302
Merit: 1001
|
|
December 31, 2014, 01:37:45 PM |
|
dev got 1 block the first premine block^^
|
|
|
|
shimlbit
Legendary
Offline
Activity: 1302
Merit: 1001
|
|
December 31, 2014, 01:46:05 PM |
|
it would be nice if there are more infos in the op
like max coins how long pow stage etc..
cmon
|
|
|
|
RJX
Legendary
Offline
Activity: 1078
Merit: 1003
|
|
December 31, 2014, 01:51:09 PM |
|
damn my feeble brain, go do dishes, forget about launch... but I gots clean dishes!
|
|
|
|
Kearney52
|
|
December 31, 2014, 02:00:16 PM |
|
the better coin name is qqcoin i think
|
|
|
|
wisnon
|
|
December 31, 2014, 02:14:42 PM |
|
Dev, the code can not read! Please indicate the block awards, and total block time? When there are win-qt wallet?
|
|
|
|
Idamaksky
Member
Offline
Activity: 80
Merit: 10
StopTheFakes.io | pre-ICO 21.11.2017 | +40% Bonus
|
|
December 31, 2014, 02:19:36 PM |
|
dev, blocks rewards?
|
|
|
|
utclover (OP)
|
|
December 31, 2014, 02:31:17 PM Last edit: December 31, 2014, 02:41:26 PM by utclover |
|
dev, blocks rewards?
block reward is 500 to 20 depending on the difficulty if difficulty goes down then block reward increases. if difficulty goes up then block reward decreases if you want to know exactly how it works, here is the code for the block reward calculations: main.cpp line 1090: // block reward between 500 and 20 depending on the difficulty. int64 nSubsidy = 0; if(dDiff > 250) { // GPU/ASIC difficulty calc 2000000/(((x+1900)/10)^2) nSubsidy = (2000000.0 / (pow((dDiff+1900.0)/10.0,2.0))); if (nSubsidy > 100) nSubsidy = 100; if (nSubsidy < 20) nSubsidy = 20; } else { // CPU mining calc nSubsidy = (11111.0 / (pow((dDiff+51.0)/6.0,2.0))); if (nSubsidy > 500) nSubsidy = 500; if (nSubsidy < 200) nSubsidy = 200; }
|
|
|
|
**D!ABLO**
|
|
December 31, 2014, 02:38:42 PM |
|
That logo. That name. You really have pushed the boat out on this one.
Lets hope all the hard work and effort pays off.
|
|
|
|
Idamaksky
Member
Offline
Activity: 80
Merit: 10
StopTheFakes.io | pre-ICO 21.11.2017 | +40% Bonus
|
|
December 31, 2014, 02:45:27 PM |
|
dev, blocks rewards?
block reward is 500 to 20 depending on the difficulty if difficulty goes down then block reward increases. if difficulty goes up then block reward decreases if you want to know exactly how it works, here is the code for the block reward calculations: main.cpp line 1090: // block reward between 500 and 20 depending on the difficulty. int64 nSubsidy = 0; if(dDiff > 250) { // GPU/ASIC difficulty calc 2000000/(((x+1900)/10)^2) nSubsidy = (2000000.0 / (pow((dDiff+1900.0)/10.0,2.0))); if (nSubsidy > 100) nSubsidy = 100; if (nSubsidy < 20) nSubsidy = 20; } else { // CPU mining calc nSubsidy = (11111.0 / (pow((dDiff+51.0)/6.0,2.0))); if (nSubsidy > 500) nSubsidy = 500; if (nSubsidy < 200) nSubsidy = 200; } then block time?
|
|
|
|
shimlbit
Legendary
Offline
Activity: 1302
Merit: 1001
|
|
December 31, 2014, 02:47:45 PM |
|
blocktime, maxcoins, where are these informations?
|
|
|
|
utclover (OP)
|
|
December 31, 2014, 03:02:40 PM |
|
blocktime, maxcoins, where are these informations?
block time 2.5 minutes. max coins 200 million (long term PoW) block reward is between 500 and 20 depending on difficulty.
|
|
|
|
shimlbit
Legendary
Offline
Activity: 1302
Merit: 1001
|
|
December 31, 2014, 03:07:58 PM |
|
premine?how much amount block 1?
|
|
|
|
|