Pages:
Author

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

hero member
Activity: 504
Merit: 500
Anybody experience with stake on mac wallets?

Please share.
legendary
Activity: 1904
Merit: 1063
Bouhouuuuuuuuuuuuuu   Cry Cry Cry


In first image sold is 515 and stake is 50 this is ok ?
The second image sold is 566 .

For me 50 is the 10 % of 500 no ?

full member
Activity: 154
Merit: 100
legendary
Activity: 1904
Merit: 1063
full member
Activity: 154
Merit: 100
yeahhhhhhhhhhh stake arrived !!!!   Grin Grin Grin




I don't see the amount of coins the stake produced.

And the block explorer is still showing 3.65% annual PoS.
legendary
Activity: 1904
Merit: 1063
yeahhhhhhhhhhh stake arrived !!!!   Grin Grin Grin


hero member
Activity: 504
Merit: 500
What is up now with 10 percent?

I am still waiting, hope it would not be screwed.
legendary
Activity: 1778
Merit: 1000
https://github.com/YCteam/YellowCoin/blob/master/src/main.cpp#L994
Code:
const int DAILY_BLOCKCOUNT =  4320;     // 1440 * 3
int64 GetProofOfStakeReward(int64 nCoinAge, unsigned int nBits, unsigned int nTime, int nHeight)
{
    int64 nRewardCoinYear;
nRewardCoinYear = MAX_MINT_PROOF_OF_STAKE;

if(nHeight < (7 * DAILY_BLOCKCOUNT))
nRewardCoinYear = 1 * MAX_MINT_PROOF_OF_STAKE;
else if(nHeight < (18 * DAILY_BLOCKCOUNT))
nRewardCoinYear = 1000 * MAX_MINT_PROOF_OF_STAKE;

    int64 nSubsidy = nCoinAge * nRewardCoinYear / 365;
if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRI64d" nBits=%d\n", FormatMoney(nSubsidy).c_str(), nCoinAge, nBits);

    return nSubsidy;
}

Seems nothing wrong with the code. We will get 10% POS soon.
OK, I UNDERSTAND. YOU SAID THAT WE WILL GET 10% POS SOON, BUT WE ARE NOT THERE YET, BECAUSE WE ARE CURRENTLY STILL ON THE 3.65% ANNUAL POS.
legendary
Activity: 1778
Merit: 1000
https://github.com/YCteam/YellowCoin/blob/master/src/main.cpp#L994
Code:
const int DAILY_BLOCKCOUNT =  4320;    // 1440 * 3
int64 GetProofOfStakeReward(int64 nCoinAge, unsigned int nBits, unsigned int nTime, int nHeight)
{
    int64 nRewardCoinYear;
nRewardCoinYear = MAX_MINT_PROOF_OF_STAKE;

if(nHeight < (7 * DAILY_BLOCKCOUNT))
nRewardCoinYear = 1 * MAX_MINT_PROOF_OF_STAKE;
else if(nHeight < (18 * DAILY_BLOCKCOUNT))
nRewardCoinYear = 1000 * MAX_MINT_PROOF_OF_STAKE;

    int64 nSubsidy = nCoinAge * nRewardCoinYear / 365;
if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRI64d" nBits=%d\n", FormatMoney(nSubsidy).c_str(), nCoinAge, nBits);

    return nSubsidy;
}

Seems nothing wrong with the code. We will get 10% POS soon.

The fact is we are past 7 * 4320 blocks (30240 blocks) and we are not getting the increased POS.  There is something wrong with your code.  Take another look, but you have a bug.  Don't just leave it as 'we'll get it soon'...  We are now at block 35693 - over 5000 blocks past where your code says it should kick in.  Keep digging and solve this or watch it crash and burn!

I look at it like this.  If you have a bank account and earn monthly interest it accrues over the month and you are paid it at the end of the month.  The daily interest started accruing at 30240 + 3420 blocks and is paid at the end of the day, another 3420 blocks, so block 38880 approximately.  

Maybe

I think

You are looking at it wrong. This is not interest. This is a block reward. Your coins need to be in your wallet for 24 hours at a minimum to make them eligible to earn a block reward. When they stake, they must then wait another 24 hours before they are eligible to stake again. So long as they are eligible to stake, they are eligible for a block reward when they do stake. Stop thinking this is interest. It is a mining block reward just like POW. The reward is variable based upon the number of coins used and the age of those coins. Nothing more. What I am arguing is that the block reward is 1/1000 the size we are owed. The dev needs to address this fast!

Probably, we are still at 3.65% ANNUAL POS. The 10% DAILY POS has not kicked in yet.

How long do we need to keep our wallets open, EVERYDAY, to generate POS COINS?
legendary
Activity: 1778
Merit: 1000
So when does day eight begin?  I ask because I cannot remember of the launch was delayed or not.  I know, I know, delayed launches are few and far between.  Bwhahahaa!!
Delayed launches happen all the time - look at Summercoin
sr. member
Activity: 392
Merit: 250
https://github.com/YCteam/YellowCoin/blob/master/src/main.cpp#L994
Code:
const int DAILY_BLOCKCOUNT =  4320;    // 1440 * 3
int64 GetProofOfStakeReward(int64 nCoinAge, unsigned int nBits, unsigned int nTime, int nHeight)
{
    int64 nRewardCoinYear;
nRewardCoinYear = MAX_MINT_PROOF_OF_STAKE;

if(nHeight < (7 * DAILY_BLOCKCOUNT))
nRewardCoinYear = 1 * MAX_MINT_PROOF_OF_STAKE;
else if(nHeight < (18 * DAILY_BLOCKCOUNT))
nRewardCoinYear = 1000 * MAX_MINT_PROOF_OF_STAKE;

    int64 nSubsidy = nCoinAge * nRewardCoinYear / 365;
if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRI64d" nBits=%d\n", FormatMoney(nSubsidy).c_str(), nCoinAge, nBits);

    return nSubsidy;
}

Seems nothing wrong with the code. We will get 10% POS soon.

The fact is we are past 7 * 4320 blocks (30240 blocks) and we are not getting the increased POS.  There is something wrong with your code.  Take another look, but you have a bug.  Don't just leave it as 'we'll get it soon'...  We are now at block 35693 - over 5000 blocks past where your code says it should kick in.  Keep digging and solve this or watch it crash and burn!

I look at it like this.  If you have a bank account and earn monthly interest it accrues over the month and you are paid it at the end of the month.  The daily interest started accruing at 30240 + 3420 blocks and is paid at the end of the day, another 3420 blocks, so block 38880 approximately.  

Maybe

I think

You are looking at it wrong. This is not interest. This is a block reward. Your coins need to be in your wallet for 24 hours at a minimum to make them eligible to earn a block reward. When they stake, they must then wait another 24 hours before they are eligible to stake again. So long as they are eligible to stake, they are eligible for a block reward when they do stake. Stop thinking this is interest. It is a mining block reward just like POW. The reward is variable based upon the number of coins used and the age of those coins. Nothing more. What I am arguing is that the block reward is 1/1000 the size we are owed. The dev needs to address this fast!
full member
Activity: 165
Merit: 101
i unlock wallet only after see this 10% daily pos  Roll Eyes
sr. member
Activity: 392
Merit: 250
https://github.com/YCteam/YellowCoin/blob/master/src/main.cpp#L994
Code:
const int DAILY_BLOCKCOUNT =  4320;     // 1440 * 3
int64 GetProofOfStakeReward(int64 nCoinAge, unsigned int nBits, unsigned int nTime, int nHeight)
{
    int64 nRewardCoinYear;
nRewardCoinYear = MAX_MINT_PROOF_OF_STAKE;

if(nHeight < (7 * DAILY_BLOCKCOUNT))
nRewardCoinYear = 1 * MAX_MINT_PROOF_OF_STAKE;
else if(nHeight < (18 * DAILY_BLOCKCOUNT))
nRewardCoinYear = 1000 * MAX_MINT_PROOF_OF_STAKE;

    int64 nSubsidy = nCoinAge * nRewardCoinYear / 365;
if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRI64d" nBits=%d\n", FormatMoney(nSubsidy).c_str(), nCoinAge, nBits);

    return nSubsidy;
}

Seems nothing wrong with the code. We will get 10% POS soon.

The fact is we are past 7 * 4320 blocks (30240 blocks) and we are not getting the increased POS.  There is something wrong with your code.  Take another look, but you have a bug.  Don't just leave it as 'we'll get it soon'...  We are now at block 35693 - over 5000 blocks past where your code says it should kick in.  Keep digging and solve this or watch it crash and burn!
hero member
Activity: 686
Merit: 503
5 Million Coins Pre-Mined Holy mother of GOD! You guys never learn.

WHO IS Behind this mess, Who Is the Developer?
legendary
Activity: 1820
Merit: 1001
what ever next pink coin, orangecoin, brown coin. too many coins comnig uot and not enough services.
member
Activity: 98
Merit: 10
https://github.com/YCteam/YellowCoin/blob/master/src/main.cpp#L994
Code:
const int DAILY_BLOCKCOUNT =  4320;     // 1440 * 3
int64 GetProofOfStakeReward(int64 nCoinAge, unsigned int nBits, unsigned int nTime, int nHeight)
{
    int64 nRewardCoinYear;
nRewardCoinYear = MAX_MINT_PROOF_OF_STAKE;

if(nHeight < (7 * DAILY_BLOCKCOUNT))
nRewardCoinYear = 1 * MAX_MINT_PROOF_OF_STAKE;
else if(nHeight < (18 * DAILY_BLOCKCOUNT))
nRewardCoinYear = 1000 * MAX_MINT_PROOF_OF_STAKE;

    int64 nSubsidy = nCoinAge * nRewardCoinYear / 365;
if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRI64d" nBits=%d\n", FormatMoney(nSubsidy).c_str(), nCoinAge, nBits);

    return nSubsidy;
}

Seems nothing wrong with the code. We will get 10% POS soon.
newbie
Activity: 3
Merit: 0
I think the price will skyrocket in few days.
sr. member
Activity: 392
Merit: 250
At block 38880 minimum, 10% MAY begin posting at the earliest I believe.  This is normal PoS behaviour.  I doubt that block 38880 is exactly correct because the dev did not take into account the 3.65% annual interest accruing throughout the PoW phase.  I have never seen it based on a time frame, it is based on blocks.  They try to estimate a time frame but the block time is never exactly what is stated.  The PoW phase was supposed to have 20 second blocks but in reality it was under 15 seconds iirc.

This is what the dev posted...
wondering if i now get 10% daily POS...

After 30240+4320 block Grin

We are still waiting for an explanation as we are way past this now...
full member
Activity: 196
Merit: 100
For the benefit of medical research
Assuming the dev is in China it's now 7.30 AM there. Get up boy and explain what's going on!
full member
Activity: 165
Merit: 101
wondering if i now get 10% daily POS...

After 30240+4320 block Grin

so where is it?
i think this dev have very low skill
i show block with destroed coin in pos block, but all ignore it
block like this
http://www.yellow-coin.com:1777/block/4ac4460081676581d8533a20c27b6dc6a8d51db06cb0c5ff6eb21f14aed704e4
this
http://www.yellow-coin.com:1777/block/81051305d40c57d3bd68568dea7de1765e54070a15f2c6c7d5045206b2b94ac7

and many another
Look at BC stakes.
When yu destroy stakes you get only part of it currently this is 10% per day that is why it add only 10% to full amount.
BC stakes same way but in diffrent parameters.
1 you add stake to amout at the end you substract part that weren't hold long enough.

yes look like, but with error
for example - normal pos block with fee in YC
http://www.yellow-coin.com:1777/block/6b9e8365360457ed51e121f32c87753e06fe3c2d7478a36022ae6d0bd1bdf929
it work when feepos reward
in bc all pos block give to miner pos reward + fee
in YC you can get fee-pos reward
Pages:
Jump to: