Bitcoin Forum
April 28, 2024, 12:39:54 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 [50] 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 ... 135 »
  Print  
Author Topic: [ANN] [YC] YellowCoin ★★Pure POS★★ Let's color the MOON !!!1.0.0.3 Updated  (Read 186593 times)
t-minus
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
April 29, 2014, 03:05:03 AM
 #981

what the hell? my wallet hasnt staked anything at all!? lol
Each block is stacked on top of the previous one. Adding another block to the top makes all lower blocks more difficult to remove: there is more "weight" above each block. A transaction in a block 6 blocks deep (6 confirmations) will be very difficult to remove.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714307994
Hero Member
*
Offline Offline

Posts: 1714307994

View Profile Personal Message (Offline)

Ignore
1714307994
Reply with quote  #2

1714307994
Report to moderator
1714307994
Hero Member
*
Offline Offline

Posts: 1714307994

View Profile Personal Message (Offline)

Ignore
1714307994
Reply with quote  #2

1714307994
Report to moderator
auctioneeeeer
Sr. Member
****
Offline Offline

Activity: 305
Merit: 250


View Profile
April 29, 2014, 03:12:50 AM
 #982

Strange, I have been getting stakes  since my first mined coins hit the 24 hour age requirement in my wallet.
t-minus
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
April 29, 2014, 03:14:09 AM
Last edit: April 29, 2014, 03:56:16 AM by t-minus
 #983

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
YCproject (OP)
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
April 29, 2014, 04:00:48 AM
 #984

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.

Let's Color the MOON: YJPz5rofb2h1iayWY3rSddrW1qyU
tomvalois
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
April 29, 2014, 05:04:26 AM
Last edit: April 29, 2014, 05:40:40 AM by tomvalois
 #985

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.
tomvalois
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
April 29, 2014, 05:17:29 AM
 #986

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.
rudius
Member
**
Offline Offline

Activity: 84
Merit: 10


View Profile
April 29, 2014, 05:48:37 AM
 #987

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?
CryptoSteam
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
April 29, 2014, 05:49:51 AM
 #988

The giveaway was extremely flawed. Tons of people got burned even after following instructions perfectly.
Specialkey
Hero Member
*****
Offline Offline

Activity: 504
Merit: 500


View Profile
April 29, 2014, 05:51:40 AM
 #989

Thank you Dev´s for the information and for your hard work.

May you solve the issue soon.


Greetings from Berlin Cheesy
tomvalois
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
April 29, 2014, 05:58:01 AM
 #990

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?

Yes. 10000 * 0.0365% = 3650%. 3650% / 365 days = 10%. This is simple (or nominal) interest. But the coins re-stake. The 10% you earned yesterday will stake tomorrow, and they will earn 10%, along with original coins, which will earn additional 10% interest. So the compounding happens automatically. You don't need tricky math to make it happen.

However, the way the code is written, if you never open your wallet between day 7 and day 18, you won't ever earn the 10%, and if you only open sometimes during those days, you won't get the full benefit of compounding. So the wallets need to stay open for the compounding to happen.
tomvalois
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
April 29, 2014, 06:19:16 AM
 #991

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?

And to explain why I called your idea insane (I meant nothing personal by it).

Here is the code you proposed:

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;

Would you agree with me that, with this code, the block reward between days 7 and 18 would be 3.5*10^16 times the amount of the block reward on the other days? My last block reward was 0.03 coins on a 220 coin stake. With your code, the block reward on my 220 coin stake would have been 1,054,771,709,846,616 coins, right?
dellfucko
Newbie
*
Offline Offline

Activity: 12
Merit: 0


View Profile
April 29, 2014, 06:24:11 AM
Last edit: April 29, 2014, 06:36:03 AM by dellfucko
 #992

There's no 10% interest. What a stupid mistake !
Please correct it ASAP , dear dev.
rudius
Member
**
Offline Offline

Activity: 84
Merit: 10


View Profile
April 29, 2014, 06:32:05 AM
 #993

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?

And to explain why I called your idea insane (I meant nothing personal by it).

Here is the code you proposed:

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;

Would you agree with me that, with this code, the block reward between days 7 and 18 statement would be 3.5*10^16 times the amount of the block reward on the other days? My last block reward was 0.03 coins on a 220 coin stake. With your code, the block reward on my 220 coin stake would have been 1,054,771,709,846,616 coins, right?

Yeah my bad, ithought that you have to calculate the annual interest rate by compouding 10% daily. The way it is in the code, there is no compounding. It just divide the annual rate by 365 ...

Code:
 int64 nSubsidy = nCoinAge * nRewardCoinYear / 365;

As you stated, to have compounding effect, you must have your stake reward EVERY day. My number seems "insane" because 10% on a daily basis is insane if lasting for a year. But it was accurate if there is compounding.

Quote from: tomvalois
Yes. 10000 * 0.0365% = 3650%. 3650% / 365 days = 10%

it s not 0,0365% annualy, it s 3,65% so the right number is 1000.  3650% is 36,5 = 1000*0,0365

So the code is right if you stake every day! You cannot put it in a paper wallet and stake from time to time. That was my mistake, i thought there was some kind of compounding interest.

Still there is some other issue since, 10% didnt kick in.
Coindgr
Hero Member
*****
Offline Offline

Activity: 1034
Merit: 500



View Profile
April 29, 2014, 06:33:29 AM
 #994

The giveaway was extremely flawed. Tons of people got burned even after following instructions perfectly.

I'm one of them...

           ▀██▄ ▄██▀
            ▐█████▌
           ▄███▀███▄
         ▄████▄  ▀███▄
       ▄███▀ ▀██▄  ▀███▄
     ▄███▀  ▄█████▄  ▀███▄
   ▄███▀  ▄███▀ ▀███▄  ▀███▄
  ███▀  ▄████▌   ▐████▄  ▀███
 ███   ██▀  ██▄ ▄██  ▀██   ███
███   ███  ███   ███  ███   ███
███   ███   ███████   ███   ███
 ███   ███▄▄       ▄▄███   ███
  ███▄   ▀▀█████████▀▀   ▄███
   ▀████▄▄           ▄▄████▀
      ▀▀███████████████▀▀
DeepOnion
.Anonymous and Untraceable.
ANN  Whitepaper  Facebook  Twitter  Telegram  Discord 





      ▄▄██████████▄▄
    ▄███▀▀      ▀▀█▀   ▄▄
   ███▀              ▄███
  ███              ▄███▀   ▄▄
 ███▌  ▄▄▄▄      ▄███▀   ▄███
▐███  ██████   ▄███▀   ▄███▀
███▌ ███  ███▄███▀   ▄███▀
███▌ ███   ████▀   ▄███▀
███▌  ███   █▀   ▄███▀  ███
▐███   ███     ▄███▀   ███
 ███▌   ███  ▄███▀     ███
  ███    ██████▀      ███
   ███▄             ▄███
    ▀███▄▄       ▄▄███▀
      ▀▀███████████▀▀
.
tomvalois
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
April 29, 2014, 06:33:54 AM
 #995

There's no 10% interest. What a stupid mistake !
Please correct it ASAP , dear dev.

Did you just come on and post without even looking through the thread? We have known for two days that PoS was not working right. The dev has been too busy screwing up the giveaway to worry about the screwed up code. He (or she) is working on it now.
Gargo
Sr. Member
****
Offline Offline

Activity: 585
Merit: 251



View Profile
April 29, 2014, 06:52:33 AM
 #996

kill hashharder.com

this fucking fraud paid nothing during pow time
tomvalois
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
April 29, 2014, 06:56:05 AM
 #997

kill hashharder.com

this fucking fraud paid nothing during pow time

Was this a pool? It's all okay, because the coin has paid almost nothing during PoS time.
tomvalois
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
April 29, 2014, 07:00:43 AM
 #998

kill hashharder.com

this fucking fraud paid nothing during pow time

I'm trying to look into it, but hashharder.com redirects to a vertcoin site.
Gargo
Sr. Member
****
Offline Offline

Activity: 585
Merit: 251



View Profile
April 29, 2014, 07:01:15 AM
 #999

kill hashharder.com

this fucking fraud paid nothing during pow time

Was this a pool? It's all okay, because the coin has paid almost nothing during PoS time.

http://www.hashharder.com/scrypt/yellowcoin
is it clear now? it was PoW time - 7 days and I got nothing.

My address:
Y63k2TSH77ck4wAfy6AcddJmqCUCVARjpG
tomvalois
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
April 29, 2014, 07:09:14 AM
 #1000

kill hashharder.com

this fucking fraud paid nothing during pow time

Was this a pool? It's all okay, because the coin has paid almost nothing during PoS time.

http://www.hashharder.com/scrypt/yellowcoin
is it clear now? it was PoW time - 7 days and I got nothing.

My address:
Y63k2TSH77ck4wAfy6AcddJmqCUCVARjpG

I just emailed the person on the WhoIs for the site. But I doubt I'll get a response. Probably a scam, like you said.
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 [50] 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 ... 135 »
  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!