Bitcoin Forum
June 21, 2024, 10:08:33 PM *
News: Voting for pizza day contest
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 [9] 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 »
  Print  
Author Topic: [ANN] Sphere [SPHR] [HARDFORK UPDATE YOUR WALLET IMMEDIATELY]  (Read 26726 times)
minerpools
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500


( ͡° ͜ʖ ͡°)


View Profile WWW
April 30, 2015, 07:47:33 PM
 #161

For anyone having issues syncing, you can use my node:

addnode=node.minerpools.com


On  a side note, there's only 3 miners at my pool, so I urge those 3 miners to move to another pool with more hash as they're just wasting money, it's very hard to get blocks with our current hashrate, so please move to Suchpool or Suprnova.

Thank you.

cgt99
Full Member
***
Offline Offline

Activity: 275
Merit: 104



View Profile
April 30, 2015, 07:50:12 PM
 #162

does anyone wallet keeps getting stuck? no matter how many times you restart it stops following blocks eventually.

Yes , happened to me .

Back up your wallet.dat somewhere , delete everything in datadir, create ChronoSphere.conf and add this: connect=sphr.suprnova.cc, let it sync fully and close wallet.
put back your original wallet.dat, remove ChronoSphere.conf and restart wallet.

connect ? not addonode?  let me try

yes it will connect to that node only ,therefor its vital to remove ChronoSphere.conf or the line with "connect" after the wallet is in sync and do  a restart.

i did that as instructed but now wallet wont open at all fatal error stufff

Windows? check in eventmanager if Chronosphere-qt.exe is still running , if it is then kill it before starting the wallet.
whatdidshedo
Sr. Member
****
Offline Offline

Activity: 448
Merit: 250


View Profile
April 30, 2015, 07:53:12 PM
 #163

does anyone wallet keeps getting stuck? no matter how many times you restart it stops following blocks eventually.

Yes , happened to me .

Back up your wallet.dat somewhere , delete everything in datadir, create ChronoSphere.conf and add this: connect=sphr.suprnova.cc, let it sync fully and close wallet.
put back your original wallet.dat, remove ChronoSphere.conf and restart wallet.

connect ? not addonode?  let me try

yes it will connect to that node only ,therefor its vital to remove ChronoSphere.conf or the line with "connect" after the wallet is in sync and do  a restart.

i did that as instructed but now wallet wont open at all fatal error stufff

Windows? check in eventmanager if Chronosphere-qt.exe is still running , if it is then kill it before starting the wallet.


yes i did that, with ol;d wallet when i exit i have to terminate process but when i resynced as you said when i exit process terminates normally but when replaced with my wallet wont start at all, but then again i restored my old wallet and chain and it starts but when i exit have to terminate manually process..

but problem is even though it syncs it stops following blocks eventually

Edit thanks for trying to help tough, i can only try so many times if it doesn't work maybe it's just me..good luck to all

minerpools
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500


( ͡° ͜ʖ ͡°)


View Profile WWW
April 30, 2015, 08:31:29 PM
 #164

I read the issues about win wallet syncs, had some pms from miners as well.
I tested this on a windows vm:

1. Open the windows wallet, don't try to click on anything before going to the debug menu and doing the following:
addnode node.minerpools.com add
addnode sphr.suprnova.cc add
addnode node.coin-miners.info add

Once I did this, left the wallet for about 10 mins and it synced, after syncing, I was able to use it and no crashes occurred.

Hope this helps anyone having issues.

louiseth1
Legendary
*
Offline Offline

Activity: 924
Merit: 1000


Bitfarms.io


View Profile WWW
April 30, 2015, 08:40:04 PM
 #165

I read the issues about win wallet syncs, had some pms from miners as well.
I tested this on a windows vm:

1. Open the windows wallet, don't try to click on anything before going to the debug menu and doing the following:
addnode node.minerpools.com add
addnode sphr.suprnova.cc add
addnode node.coin-miners.info add

Once I did this, left the wallet for about 10 mins and it synced, after syncing, I was able to use it and no crashes occurred.

Hope this helps anyone having issues.

I just added another available node to help with this:

addnode node.suchpool.pw add

Bitfarms.io - Powering Blockchains with Sustainable Energy
RedKeep
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
April 30, 2015, 09:08:21 PM
 #166

Count me in  Cheesy

waiting on bittrex this coin needs more volume   Cool
tm2013
Hero Member
*****
Offline Offline

Activity: 644
Merit: 500



View Profile WWW
April 30, 2015, 09:10:03 PM
 #167

Anyone knows the formula to calculate block reward? I found the following but I'm not familiar with this language:

Code:
static const int g_RewardHalvingPeriod = 1337;
nSubsidy = 90 * COIN;
int halvings = pindexBest->nHeight / g_RewardHalvingPeriod;
nSubsidy = (halvings >= 64)? 0 : (nSubsidy >> halvings);
nSubsidy -= nSubsidy*(pindexBest->nHeight % g_RewardHalvingPeriod)/(2*g_RewardHalvingPeriod);
This is the continuously decreasing reward that we are on now. It was originally supposed to flat line and stay steady at 45 per block, but that didn't happen. Now it will keep going down until it hits zero when it transitions to 100% PoS.

Radium.Bringing Advanced Utility to the Blockchain with the Radium SmartChain!
Website | BTCT Thread
louiseth1
Legendary
*
Offline Offline

Activity: 924
Merit: 1000


Bitfarms.io


View Profile WWW
April 30, 2015, 09:13:02 PM
 #168

Anyone knows the formula to calculate block reward? I found the following but I'm not familiar with this language:

Code:
static const int g_RewardHalvingPeriod = 1337;
nSubsidy = 90 * COIN;
int halvings = pindexBest->nHeight / g_RewardHalvingPeriod;
nSubsidy = (halvings >= 64)? 0 : (nSubsidy >> halvings);
nSubsidy -= nSubsidy*(pindexBest->nHeight % g_RewardHalvingPeriod)/(2*g_RewardHalvingPeriod);
This is the continuously decreasing reward that we are on now. It was originally supposed to flat line and stay steady at 45 per block, but that didn't happen. Now it will keep going down until it hits zero when it transitions to 100% PoS.

You're right, instead looks it started at around 45+ ish and is gradually toning down. That will be interesting as PoS big blocks will be approaching and supply is getting harder to mine every block.

Bitfarms.io - Powering Blockchains with Sustainable Energy
tic-tac-totoro
Sr. Member
****
Offline Offline

Activity: 287
Merit: 250


View Profile
April 30, 2015, 09:23:06 PM
 #169

I think I figured the block rewards out. At block 3600 it will be around 14.70 according to my calculations. Is this correct?
ocminer
Legendary
*
Offline Offline

Activity: 2660
Merit: 1240



View Profile WWW
April 30, 2015, 10:13:52 PM
 #170

It seems the Blockchain forked. I am not Sure which is the right chain right now as there are several

suprnova pools - reliable mining pools - #suprnova on freenet
https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
louiseth1
Legendary
*
Offline Offline

Activity: 924
Merit: 1000


Bitfarms.io


View Profile WWW
April 30, 2015, 10:21:10 PM
 #171

It seems the Blockchain forked. I am not Sure which is the right chain right now as there are several

Same. I'm trying to resync my pool but can't get any connections through.

Bitfarms.io - Powering Blockchains with Sustainable Energy
ohmygod21
Full Member
***
Offline Offline

Activity: 224
Merit: 100


View Profile
April 30, 2015, 10:24:25 PM
 #172

It seems the Blockchain forked. I am not Sure which is the right chain right now as there are several

i think i have lost 322 coins / no tx id on the withdrawal
scorpio18
Legendary
*
Offline Offline

Activity: 1722
Merit: 1000


Admin of CoinMiners Pools


View Profile WWW
April 30, 2015, 10:26:05 PM
 #173

It seems the Blockchain forked. I am not Sure which is the right chain right now as there are several

I have synced my pool to your fork ocminer

EDIT: ChronoSphered getblockhash 1804
f55149405d38802a4c2e02ebcd96918bbd6edd339b9f153e9d9c7c8c08dc61c8

tm2013
Hero Member
*****
Offline Offline

Activity: 644
Merit: 500



View Profile WWW
April 30, 2015, 10:26:41 PM
 #174

It seems the Blockchain forked. I am not Sure which is the right chain right now as there are several

I have synced my pool to your fork ocminer
I suggest the same for all, it has the majority block count.

Radium.Bringing Advanced Utility to the Blockchain with the Radium SmartChain!
Website | BTCT Thread
stackoverflow
Full Member
***
Offline Offline

Activity: 224
Merit: 100


View Profile
April 30, 2015, 10:28:56 PM
 #175

another fork today, don't worry the dev will chose his fork  Grin
Nthused
Legendary
*
Offline Offline

Activity: 1554
Merit: 1001



View Profile
April 30, 2015, 10:30:03 PM
 #176

So many Ninjas around I think I'm in Japan Cheesy
louiseth1
Legendary
*
Offline Offline

Activity: 924
Merit: 1000


Bitfarms.io


View Profile WWW
April 30, 2015, 10:39:04 PM
 #177

For those who are forking, I spent a bit of time with minerpools and for now we had to addnode=195.154.162.140 to get syncing properly.

Will continue to run that since we're now in sync with everything, and wait for the developpers to address the issue.

Bitfarms.io - Powering Blockchains with Sustainable Energy
tm2013
Hero Member
*****
Offline Offline

Activity: 644
Merit: 500



View Profile WWW
April 30, 2015, 10:41:18 PM
 #178

For those who are forking, I spent a bit of time with minerpools and for now we had to addnode=195.154.162.140 to get syncing properly.

Will continue to run that since we're now in sync with everything, and wait for the developpers to address the issue.
So... SuchPool went with Minerpools and Coinminers went with Suprnova.  Undecided

Radium.Bringing Advanced Utility to the Blockchain with the Radium SmartChain!
Website | BTCT Thread
minerpools
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500


( ͡° ͜ʖ ͡°)


View Profile WWW
April 30, 2015, 10:42:22 PM
 #179

For those who are forking, I spent a bit of time with minerpools and for now we had to addnode=195.154.162.140 to get syncing properly.

Will continue to run that since we're now in sync with everything, and wait for the developpers to address the issue.
So... SuchPool went with Minerpools and Coinminers went with Suprnova.  Undecided

No, we're all synced.

Guess we'll have to wait for another update from dev to get this fixed as this is a temp solution.

I'm simply offering that node to help avoid further forks.

tm2013
Hero Member
*****
Offline Offline

Activity: 644
Merit: 500



View Profile WWW
April 30, 2015, 10:44:12 PM
 #180

For those who are forking, I spent a bit of time with minerpools and for now we had to addnode=195.154.162.140 to get syncing properly.

Will continue to run that since we're now in sync with everything, and wait for the developpers to address the issue.
So... SuchPool went with Minerpools and Coinminers went with Suprnova.  Undecided

No, we're all synced.

Guess we'll have to wait for another update from dev to get this fixed as this is a temp solution.
Okay, as long as we're on one chain. It shouldn't be too hard of a fix from the dev. However, it will prove he is more than a copy-paste if he can fix it.

Radium.Bringing Advanced Utility to the Blockchain with the Radium SmartChain!
Website | BTCT Thread
Pages: « 1 2 3 4 5 6 7 8 [9] 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 »
  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!