Pages:
Author

Topic: [ANN] [YC] YellowCoin ★★Pure POS★★ Let's color the MOON !!!1.0.0.3 Updated - page 86. (Read 186649 times)

hero member
Activity: 504
Merit: 500
Thank you Dev´s for the information and for your hard work.

May you solve the issue soon.


Greetings from Berlin Cheesy
full member
Activity: 126
Merit: 100
The giveaway was extremely flawed. Tons of people got burned even after following instructions perfectly.
member
Activity: 84
Merit: 10
SUGGESTIONS TO DEV:

#1: When you modify the wallet code, also modify the PoS reward schedule so we still get 10 full days of 10% PoS.

#2: Don't listen to the crazy guy who says you need to multiply anything by 3x10^16. That is just insane. 10,000 is the right number. I've written a simulation and tested it. As long as people leave their wallets open and unlocked, the compounding happens automatically.


could you explain why 10000 is the right number?
full member
Activity: 154
Merit: 100
SUGGESTIONS TO DEV:

#1: When you modify the wallet code, also modify the PoS reward schedule so we still get 10 full days of 10% PoS.

#2: Don't listen to the crazy guy who says you need to multiply anything by 3x10^16. That is just insane. 10,000 is the right number. I've written a simulation and tested it. As long as people leave their wallets open and unlocked, the compounding happens automatically.
full member
Activity: 154
Merit: 100
35159056994887200 * 0,0365 * COIN = 1,1^365 * COIN


This would mean that you will get 10% daily for a year. I think it's rather: coin * 1,0365 + coin * 1.1^8 for one year.

yes it s the annual rate for a year. but it is limited to 10 days. See below :

Code:
if(nHeight < (7 * DAILY_BLOCKCOUNT))
nRewardCoinYear = 1 * MAX_MINT_PROOF_OF_STAKE;
else if(nHeight < (18 * DAILY_BLOCKCOUNT))
nRewardCoinYear =  35159056994887200 * MAX_MINT_PROOF_OF_STAKE;

We have the normal rate for the first 7 days. And from 7 to 18 first days we have the super POS rate, currently setted to 1% daily.
OP says: Block Day 8-17 (POS): Nominal Stake Interest: 10% Daily

Yes and code says otherwise, but you are free to inspect it.
35159056994887200 * 0,0365 * COIN = 1,1^365 * COIN <-- This is wrong!
(1.1^365)/0.0365 = 3.5159... * 10^16

Please this is exactly the same 35159056994887200 = 3.5159... * 10^16

Regardless of whether the numbers are wrong, there must be another issue as well. The reward rate did not change when it was supposed to. It is still rewarding at 0.01% per day (3.65% per year).
this can be error this value nHeight as i write above
may be nHeight do not receive right value
and work only string
Code:
	nRewardCoinYear = MAX_MINT_PROOF_OF_STAKE;

Yes, it has to be a problem with the way nHeight is passed to the function. There is only one conditional construct that affects the size of the reward (the if-then statement), and there is only one variable in the statement. Everything except nHeight is a constant.

EDIT: By the way - nRewardCoinYear is defined as int64 right above the line it is first used. In C++, you can't use implicit typecasts. If the code were trying to set nRewardCoinYear to a string, it would throw an exception during the compiling. So I don't think that is the issue. It is either a problem with the way nHeight is passed, or else something in the code is changing the value of the result of the function before it is added to the tx block.
member
Activity: 98
Merit: 10
We are still working hard to resolve the issues with the POS interest rate. We apologise for the inconvenience and we’ll let you know any update if there is.
full member
Activity: 210
Merit: 100
Strange, I have been getting stakes  since my first mined coins hit the 24 hour age requirement in my wallet.

should I leave the wallet open 24-7? also do I need to add anything to the conf. file or anything? I have been opening the wallet daily but only for like 10 minutes then closing it.

EDIT: after checking I didnt even have a conf. file in my yellowcoin folder. I have since then added one and will leave wallet open all night and see what happens in the AM.
EDIT: its working now! just have to leave the wallet open long enough it seems
sr. member
Activity: 305
Merit: 250
Strange, I have been getting stakes  since my first mined coins hit the 24 hour age requirement in my wallet.
full member
Activity: 210
Merit: 100
what the hell? my wallet hasnt staked anything at all!? lol
sr. member
Activity: 305
Merit: 250
My wallet was offline for about 3 hours, but online consistently before that, and as you can see it's staking often about 4-5 times an hour:


full member
Activity: 481
Merit: 102
My coins have been in my wallet for over 24 hours and I still havent seen a stake yet. It also doesnt say "staking" in the bottom right hand corner.
sr. member
Activity: 305
Merit: 250
I have staked about 50 coins with my mined amount, hoping the 10% kicks in soon.

And to those that have asked, your wallet has to be open to stake coins - as in the daemon or QT running.
sr. member
Activity: 305
Merit: 250
I have staked about 50 coins with my mined amount, hoping the 10% kicks in soon.
member
Activity: 76
Merit: 10
I've got you all beat - I have 15,000+ YC, all mined, that's been sitting in an open, unlocked wallet for a week that still shows 0.00 stake.
full member
Activity: 165
Merit: 101
35159056994887200 * 0,0365 * COIN = 1,1^365 * COIN


This would mean that you will get 10% daily for a year. I think it's rather: coin * 1,0365 + coin * 1.1^8 for one year.

yes it s the annual rate for a year. but it is limited to 10 days. See below :

Code:
if(nHeight < (7 * DAILY_BLOCKCOUNT))
nRewardCoinYear = 1 * MAX_MINT_PROOF_OF_STAKE;
else if(nHeight < (18 * DAILY_BLOCKCOUNT))
nRewardCoinYear =  35159056994887200 * MAX_MINT_PROOF_OF_STAKE;

We have the normal rate for the first 7 days. And from 7 to 18 first days we have the super POS rate, currently setted to 1% daily.
OP says: Block Day 8-17 (POS): Nominal Stake Interest: 10% Daily

Yes and code says otherwise, but you are free to inspect it.
35159056994887200 * 0,0365 * COIN = 1,1^365 * COIN <-- This is wrong!
(1.1^365)/0.0365 = 3.5159... * 10^16

Please this is exactly the same 35159056994887200 = 3.5159... * 10^16

Regardless of whether the numbers are wrong, there must be another issue as well. The reward rate did not change when it was supposed to. It is still rewarding at 0.01% per day (3.65% per year).
this can be error this value nHeight as i write above
may be nHeight do not receive right value
and work only string
Code:
nRewardCoinYear = MAX_MINT_PROOF_OF_STAKE;
hero member
Activity: 714
Merit: 503
looks to be a strong coin
what about pos?
member
Activity: 118
Merit: 10
Mining since early 2013
Yeah, this is all very confusing and that's why I'm asking about the wallet.

I've had YC in my wallet for 4 days now and I've gotten only once 0.0346YC for it. I thought it happens daily.
sr. member
Activity: 294
Merit: 250
DEV, can you please check/explain what's up with PoS?

Isn't supposed to be at 10% now? if you're doing it with block height, would you be so kind as to remember/tell everyone at what block count does it start and end the 10% phase?
Is there a new wallet update that we're all missing??

I have 0.05 YC staked from 3000 YC  Undecided  hardly 10% a day ...

What am I missing here?

Thanks in advance
member
Activity: 118
Merit: 10
Mining since early 2013
Can someone answer me, does the wallet need to be running 24/7 for the stakes to work or does it work even when my computer is not on and I open the wallet couple of times a week?
member
Activity: 70
Merit: 10
Pages:
Jump to: