ocminer
Legendary
Offline
Activity: 2702
Merit: 1240
|
|
June 23, 2015, 10:28:50 PM |
|
After 110 confirmations you should have confirmed coins
|
suprnova pools - reliable mining pools - #suprnova on freenet https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
|
|
|
Starin
|
|
June 23, 2015, 10:29:10 PM |
|
has anyone started staking yet?
1 hour past with more than 110 confirmations, still no mature coins. Dev? I have two blocks 1 at 110 confirms and 1 at 119 confirms no mature coins. Yeah but the code seems fine, 1 hour for min. stake age and 100 confirms. unsigned int nStakeMinAge = 1 * 60 * 60; // Vertex - 1 hours int nCoinbaseMaturity = 100; After 110 confirmations you should have confirmed coins
I don't.
|
|
|
|
locohammerhead
|
|
June 23, 2015, 10:31:47 PM |
|
has anyone started staking yet?
1 hour past with more than 110 confirmations, still no mature coins. Dev? I have two blocks 1 at 110 confirms and 1 at 119 confirms no mature coins. Yeah but the code seems fine, 1 hour for min. stake age and 100 confirms. unsigned int nStakeMinAge = 1 * 60 * 60; // Vertex - 1 hours int nCoinbaseMaturity = 100; After 110 confirmations you should have confirmed coins
I don't. I have confirmed coins but they are nearing on 3 hours in age now.
|
|
|
|
ocminer
Legendary
Offline
Activity: 2702
Merit: 1240
|
|
June 23, 2015, 10:36:47 PM |
|
has anyone started staking yet?
1 hour past with more than 110 confirmations, still no mature coins. Dev? I have two blocks 1 at 110 confirms and 1 at 119 confirms no mature coins. Yeah but the code seems fine, 1 hour for min. stake age and 100 confirms. unsigned int nStakeMinAge = 1 * 60 * 60; // Vertex - 1 hours int nCoinbaseMaturity = 100; After 110 confirmations you should have confirmed coins
I don't. I have confirmed coins but they are nearing on 3 hours in age now. ah, i was confusing stake age with coinbase maturity, sorry
|
suprnova pools - reliable mining pools - #suprnova on freenet https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
|
|
|
Starin
|
|
June 23, 2015, 10:41:11 PM |
|
oc, did you see any other parameter for staking? Its kinda wierd to have mature coins according to code yet none staking. I'll look if the PoS starts right away, that might be the problem. Hmm, does this mean PoS starts after PoW? But still, shouldn't it say "Still in PoW phase" or something like that, rather than saying "You have no mature coins".
|
|
|
|
ocminer
Legendary
Offline
Activity: 2702
Merit: 1240
|
|
June 23, 2015, 10:50:09 PM |
|
oc, did you see any other parameter for staking? Its kinda wierd to have mature coins according to code yet none staking. I'll look if the PoS starts right away, that might be the problem. Hmm, does this mean PoS starts after PoW? But still, shouldn't it say "Still in PoW phase" or something like that, rather than saying "You have no mature coins". Hmm what i see by flying through the code is minStakeAge 1 hour... so when coins hit your wallet, after 1 hour they should be mature for staking
|
suprnova pools - reliable mining pools - #suprnova on freenet https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
|
|
|
locohammerhead
|
|
June 23, 2015, 10:54:14 PM |
|
oc, did you see any other parameter for staking? Its kinda wierd to have mature coins according to code yet none staking. I'll look if the PoS starts right away, that might be the problem. Hmm, does this mean PoS starts after PoW? But still, shouldn't it say "Still in PoW phase" or something like that, rather than saying "You have no mature coins". Hmm what i see by flying through the code is minStakeAge 1 hour... so when coins hit your wallet, after 1 hour they should be mature for staking ahh ok its 160-170 confirms until it starts to stake then.
|
|
|
|
Starin
|
|
June 23, 2015, 10:55:51 PM |
|
oc, did you see any other parameter for staking? Its kinda wierd to have mature coins according to code yet none staking. I'll look if the PoS starts right away, that might be the problem. Hmm, does this mean PoS starts after PoW? But still, shouldn't it say "Still in PoW phase" or something like that, rather than saying "You have no mature coins". Hmm what i see by flying through the code is minStakeAge 1 hour... so when coins hit your wallet, after 1 hour they should be mature for staking xpooky showed me this: int CMerkleTx::GetBlocksToMaturity() const { if (!(IsCoinBase() || IsCoinStake())) return 0; return max(0, (nCoinbaseMaturity+10) - GetDepthInMainChain()); }
But still I have more than 2.5 hours old coins with more than 150 confirmations, still saying "no mature coins". Wierd. There is a proof of stake diffuculty, does this mean someone already started staking? "proof-of-stake" : 0.00024414 oc, did you see any other parameter for staking? Its kinda wierd to have mature coins according to code yet none staking. I'll look if the PoS starts right away, that might be the problem. Hmm, does this mean PoS starts after PoW? But still, shouldn't it say "Still in PoW phase" or something like that, rather than saying "You have no mature coins". Hmm what i see by flying through the code is minStakeAge 1 hour... so when coins hit your wallet, after 1 hour they should be mature for staking ahh ok its 160-170 confirms until it starts to stake then. Did you start to stake after 160 confirms? Edit: The good thing about crypto is you never stop learning. I guess after 1 hour it asks for 110 confirmations, than starts to stake. Lets see.
|
|
|
|
xPooky
|
|
June 23, 2015, 10:57:32 PM |
|
oc, did you see any other parameter for staking? Its kinda wierd to have mature coins according to code yet none staking. I'll look if the PoS starts right away, that might be the problem. Hmm, does this mean PoS starts after PoW? But still, shouldn't it say "Still in PoW phase" or something like that, rather than saying "You have no mature coins". Hmm what i see by flying through the code is minStakeAge 1 hour... so when coins hit your wallet, after 1 hour they should be mature for staking xpooky showed me this: int CMerkleTx::GetBlocksToMaturity() const { if (!(IsCoinBase() || IsCoinStake())) return 0; return max(0, (nCoinbaseMaturity+10) - GetDepthInMainChain()); }
But still I have more than 2.5 hours old coins with more than 150 confirmations, still saying "no mature coins". Wierd. There is a proof of stake diffuculty, does this mean someone already started staking? "proof-of-stake" : 0.00024414 oc, did you see any other parameter for staking? Its kinda wierd to have mature coins according to code yet none staking. I'll look if the PoS starts right away, that might be the problem. Hmm, does this mean PoS starts after PoW? But still, shouldn't it say "Still in PoW phase" or something like that, rather than saying "You have no mature coins". Hmm what i see by flying through the code is minStakeAge 1 hour... so when coins hit your wallet, after 1 hour they should be mature for staking ahh ok its 160-170 confirms until it starts to stake then. Did you start to stake after 160 confirms? it should be 1 hour after the 110 confirmations
|
|
|
|
locohammerhead
|
|
June 23, 2015, 10:58:29 PM Last edit: June 23, 2015, 11:18:30 PM by locohammerhead |
|
oc, did you see any other parameter for staking? Its kinda wierd to have mature coins according to code yet none staking. I'll look if the PoS starts right away, that might be the problem. Hmm, does this mean PoS starts after PoW? But still, shouldn't it say "Still in PoW phase" or something like that, rather than saying "You have no mature coins". Hmm what i see by flying through the code is minStakeAge 1 hour... so when coins hit your wallet, after 1 hour they should be mature for staking xpooky showed me this: int CMerkleTx::GetBlocksToMaturity() const { if (!(IsCoinBase() || IsCoinStake())) return 0; return max(0, (nCoinbaseMaturity+10) - GetDepthInMainChain()); }
But still I have more than 2.5 hours old coins with more than 150 confirmations, still saying "no mature coins". Wierd. There is a proof of stake diffuculty, does this mean someone already started staking? "proof-of-stake" : 0.00024414 oc, did you see any other parameter for staking? Its kinda wierd to have mature coins according to code yet none staking. I'll look if the PoS starts right away, that might be the problem. Hmm, does this mean PoS starts after PoW? But still, shouldn't it say "Still in PoW phase" or something like that, rather than saying "You have no mature coins". Hmm what i see by flying through the code is minStakeAge 1 hour... so when coins hit your wallet, after 1 hour they should be mature for staking ahh ok its 160-170 confirms until it starts to stake then. Did you start to stake after 160 confirms? No but based on the 100 confirm to mature and 1 hour min stake age with 60 sec block times it should work out to 160 confirms to start staking. **Edit I have a block of 166 confirms and no mature coins**
|
|
|
|
proletariat
Legendary
Offline
Activity: 1246
Merit: 1005
|
|
June 23, 2015, 11:18:50 PM |
|
my little staking arrow just turned green
|
|
|
|
Starin
|
|
June 23, 2015, 11:19:46 PM |
|
my little staking arrow just turned green
How many hours and confirms you have bro?
|
|
|
|
proletariat
Legendary
Offline
Activity: 1246
Merit: 1005
|
|
June 23, 2015, 11:21:34 PM |
|
my little staking arrow just turned green
How many hours and confirms you have bro? 170 confirms and around 2.5 hours
|
|
|
|
Starin
|
|
June 23, 2015, 11:26:40 PM |
|
my little staking arrow just turned green
How many hours and confirms you have bro? 170 confirms and around 2.5 hours Meh, its my luck than. I have 3 hours and 180 confirms, still no matured coins.
|
|
|
|
locohammerhead
|
|
June 24, 2015, 12:54:37 AM |
|
my little staking arrow just turned green
How many hours and confirms you have bro? 170 confirms and around 2.5 hours I have 218 and its not staking.
|
|
|
|
@boutiuqe
|
|
June 24, 2015, 01:11:12 AM |
|
static const int64_t nTargetTimespan = 25 * 60; // Vertex - 5 mins unsigned int nTargetSpacing = 60; // Vertex - 60 seconds static const int64_t nInterval = nTargetTimespan / nTargetSpacing;
static const int64_t nDiffChangeTarget = 1; Can any one explain ? It look like 25 block retarget , but bottom have 1 block retarget. What is going one ? If I am not mistake.
|
|
|
|
morrisonsa
Member
Offline
Activity: 112
Merit: 10
|
|
June 24, 2015, 01:56:16 AM |
|
|
|
|
|
|
proletariat
Legendary
Offline
Activity: 1246
Merit: 1005
|
|
June 24, 2015, 02:49:06 AM |
|
I'm losing connections. Had 22 a few hours ago and now only 1. I've restarted, deleted the peers.dat, added the nodes on the ann...... very weird.
|
|
|
|
digitalgrow
|
|
June 24, 2015, 03:07:37 AM |
|
I'm losing connections. Had 22 a few hours ago and now only 1. I've restarted, deleted the peers.dat, added the nodes on the ann...... very weird.
Seems to be fine here, 20 connections and fully synced up
|
|
|
|
|