Bitcoin Forum
May 02, 2024, 10:27:43 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 »
  Print  
Author Topic: [ANN][FIND] FindCoin | Update Wallet If You Haven't! | Community Anti-Scam Token  (Read 126316 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
uki
Legendary
*
Offline Offline

Activity: 1358
Merit: 1000


cryptojunk bag holder


View Profile
February 15, 2015, 08:13:39 PM
 #1441

I had FindCoin in my wallet , i start staking but i didn't Findcoin every hour. Sad
hold on, you are confusing two things: one was distribution phase, that was indeed each hour and that is OVER since many days, and other thing is staking (PoS phase) that is taking place now. PoS works as follows: you must have some coins already in the wallet and once they achieve maturity (after several hours - check OP for details) they are ready for staking (you must unlock the wallet for that). That doesn't mean you immediately receive the coins - you will be competing with others and only if your priority is higher you will get the coins. Priority is dependent on the number of coins and their age.

this space is intentionally left blank
1714688863
Hero Member
*
Offline Offline

Posts: 1714688863

View Profile Personal Message (Offline)

Ignore
1714688863
Reply with quote  #2

1714688863
Report to moderator
"The nature of Bitcoin is such that once version 0.1 was released, the core design was set in stone for the rest of its lifetime." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714688863
Hero Member
*
Offline Offline

Posts: 1714688863

View Profile Personal Message (Offline)

Ignore
1714688863
Reply with quote  #2

1714688863
Report to moderator
1714688863
Hero Member
*
Offline Offline

Posts: 1714688863

View Profile Personal Message (Offline)

Ignore
1714688863
Reply with quote  #2

1714688863
Report to moderator
anotherlateminer
Legendary
*
Offline Offline

Activity: 1410
Merit: 1003

Bagholder. Hodling shit since 2014


View Profile
February 15, 2015, 08:40:40 PM
 #1442

Guys, I think you need to re-check the annual PoS interest. Today I received just 0.9FIND for 27280FIND block. And this is for a period of 8 days.
Yep, it seems to be much lower than 25%.
Quadmium
Full Member
***
Offline Offline

Activity: 184
Merit: 100



View Profile
February 15, 2015, 11:29:37 PM
Last edit: February 15, 2015, 11:50:59 PM by Quadmium
 #1443

Guys, I think you need to re-check the annual PoS interest. Today I received just 0.9FIND for 27280FIND block. And this is for a period of 8 days.
Yep, it seems to be much lower than 25%.

Hmm... I agree, it seems the POS reward code could have a bug. I'll look into it more and see if we need a fork.

Edit: Can you guys confirm if your POS earned per day is less than expected? Here is the code I believe is causing the problem:
Code:
int64_t nSubsidy = nCoinAge * nRewardCoinYear / 365 / COIN;

Should really be:
Code:
int64_t nSubsidy = nCoinAge * nRewardCoinYear / 365;
uki
Legendary
*
Offline Offline

Activity: 1358
Merit: 1000


cryptojunk bag holder


View Profile
February 16, 2015, 09:42:28 AM
 #1444

Hmm... I agree, it seems the POS reward code could have a bug. I'll look into it more and see if we need a fork.

Edit: Can you guys confirm if your POS earned per day is less than expected? Here is the code I believe is causing the problem:
Code:
int64_t nSubsidy = nCoinAge * nRewardCoinYear / 365 / COIN;

Should really be:
Code:
int64_t nSubsidy = nCoinAge * nRewardCoinYear / 365;

if the nCoinAge is expressed in days, then the second formula is fine. Otherwise we will have problems as interest rate is scaled to days.
the first formula may be thus correct, if COIN is the scaling factor. Double check that.

this space is intentionally left blank
Kepasa
Legendary
*
Offline Offline

Activity: 1848
Merit: 1014



View Profile
February 16, 2015, 02:23:35 PM
 #1445

We need to find Denkoma. He is Megamind. Satoshi Nakomoto 2.
Inotanewbie
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250


www.CloudThink.IO


View Profile WWW
February 16, 2015, 02:27:38 PM
 #1446

We need to find Denkoma. He is Megamind. Satoshi Nakomoto 2.

Wow what a load of donkey poo, he is far from megamind, satoshi. he could not build a linux wallet he is not terrible by all means but stop trolling.

EDIT: Good riddance to someone that leaves a community and coin.

cloudthink.io   



 



 



 



 



 



Truly Profitable Investment Packages
Custom-Built ASIC Miners ● #1 Self-Sustainable Bitcoin Mining Service in the World ●
Quadmium
Full Member
***
Offline Offline

Activity: 184
Merit: 100



View Profile
February 16, 2015, 05:06:35 PM
 #1447

Hmm... I agree, it seems the POS reward code could have a bug. I'll look into it more and see if we need a fork.

Edit: Can you guys confirm if your POS earned per day is less than expected? Here is the code I believe is causing the problem:
Code:
int64_t nSubsidy = nCoinAge * nRewardCoinYear / 365 / COIN;

Should really be:
Code:
int64_t nSubsidy = nCoinAge * nRewardCoinYear / 365;

if the nCoinAge is expressed in days, then the second formula is fine. Otherwise we will have problems as interest rate is scaled to days.
the first formula may be thus correct, if COIN is the scaling factor. Double check that.

It seems FIND has nCoinAge calculated as follows:
Code:
CBigNum bnCoinDay = bnCentSecond * CENT / (24 * 60 * 60);
    if (fDebug && GetBoolArg("-printcoinage"))
        printf("coin age bnCoinDay=%s\n", bnCoinDay.ToString().c_str());
    nCoinAge = bnCoinDay.getuint64();

While the second example (HyperStake) has it like this:
Code:
CBigNum bnCoinDay = bnCentSecond * CENT / COIN / (24 * 60 * 60);
    if (fDebug && GetBoolArg("-printcoinage"))
        printf("coin age bnCoinDay=%s\n", bnCoinDay.ToString().c_str());
    nCoinAge = bnCoinDay.getuint64();

So at the moment I'm not sure where the mistake could be as they both divide by COIN, but FIND does it later in the calculation.
uki
Legendary
*
Offline Offline

Activity: 1358
Merit: 1000


cryptojunk bag holder


View Profile
February 16, 2015, 11:31:17 PM
 #1448

Hmm... I agree, it seems the POS reward code could have a bug. I'll look into it more and see if we need a fork.

Edit: Can you guys confirm if your POS earned per day is less than expected? Here is the code I believe is causing the problem:
Code:
int64_t nSubsidy = nCoinAge * nRewardCoinYear / 365 / COIN;

Should really be:
Code:
int64_t nSubsidy = nCoinAge * nRewardCoinYear / 365;

if the nCoinAge is expressed in days, then the second formula is fine. Otherwise we will have problems as interest rate is scaled to days.
the first formula may be thus correct, if COIN is the scaling factor. Double check that.

It seems FIND has nCoinAge calculated as follows:
Code:
CBigNum bnCoinDay = bnCentSecond * CENT / (24 * 60 * 60);
    if (fDebug && GetBoolArg("-printcoinage"))
        printf("coin age bnCoinDay=%s\n", bnCoinDay.ToString().c_str());
    nCoinAge = bnCoinDay.getuint64();

While the second example (HyperStake) has it like this:
Code:
CBigNum bnCoinDay = bnCentSecond * CENT / COIN / (24 * 60 * 60);
    if (fDebug && GetBoolArg("-printcoinage"))
        printf("coin age bnCoinDay=%s\n", bnCoinDay.ToString().c_str());
    nCoinAge = bnCoinDay.getuint64();

So at the moment I'm not sure where the mistake could be as they both divide by COIN, but FIND does it later in the calculation.

ok, let's see if I can help with this one.
Both formulas lead to the same solution, the difference however is the order of operations.
in the first version you have division by COIN after converting to int, in the second before.
That may have importance.


this space is intentionally left blank
Quadmium
Full Member
***
Offline Offline

Activity: 184
Merit: 100



View Profile
February 17, 2015, 12:44:32 AM
 #1449

-snip-

ok, let's see if I can help with this one.
Both formulas lead to the same solution, the difference however is the order of operations.
in the first version you have division by COIN after converting to int, in the second before.
That may have importance.



Yea I guess, its the only thing I can see affecting the calculation. I'll go ahead and run some tests and check if there is actually a difference.
fantoos
Hero Member
*****
Offline Offline

Activity: 784
Merit: 1000



View Profile
February 17, 2015, 04:05:35 PM
 #1450

I was away little so dont have any idea how the things are moving in Find. I will keep regularly visiting the thread to keep the thread more active.

Kartaba
Sr. Member
****
Offline Offline

Activity: 276
Merit: 250


View Profile
February 17, 2015, 11:23:19 PM
 #1451

slow progress is better than no progress  Roll Eyes
okae
Legendary
*
Offline Offline

Activity: 1401
Merit: 1008


northern exposure


View Profile WWW
February 17, 2015, 11:36:07 PM
 #1452

slow progress is better than no progress  Roll Eyes

jaja +1, i hope there is more movement with this coin in next days...

IMHO #1.b of suspects, Hal Finney is/was S.N.
uki
Legendary
*
Offline Offline

Activity: 1358
Merit: 1000


cryptojunk bag holder


View Profile
February 17, 2015, 11:48:44 PM
 #1453

-snip-

ok, let's see if I can help with this one.
Both formulas lead to the same solution, the difference however is the order of operations.
in the first version you have division by COIN after converting to int, in the second before.
That may have importance.



Yea I guess, its the only thing I can see affecting the calculation. I'll go ahead and run some tests and check if there is actually a difference.
Did you manage to check that? Please, let me know what the outcome was.

this space is intentionally left blank
HarryPotHead
Full Member
***
Offline Offline

Activity: 192
Merit: 100

You are what you eat. PIZZA!


View Profile
February 18, 2015, 12:01:06 AM
 #1454

slow progress is better than no progress  Roll Eyes

This is a wise man ^^^ After the Denkoma left we are lucky that we are making progress, hope he is ok though he seemed to be into this project  Sad

Alot of us need to help this in anyway we can once we get moving again it is a community coin after all

mirador17
Hero Member
*****
Offline Offline

Activity: 799
Merit: 1000



View Profile
February 18, 2015, 10:50:42 AM
 #1455

You're trying a dead cat bouncing before the definitely end of find coin.  Grin
uki
Legendary
*
Offline Offline

Activity: 1358
Merit: 1000


cryptojunk bag holder


View Profile
February 18, 2015, 11:19:31 AM
 #1456

You're trying a dead cat bouncing before the definitely end of find coin.  Grin
Sorry, can you correct English in your post? Otherwise it is hard to understand what you mean.

this space is intentionally left blank
mirador17
Hero Member
*****
Offline Offline

Activity: 799
Merit: 1000



View Profile
February 18, 2015, 11:47:02 AM
 #1457

You're trying a dead cat bouncing before the definitely end of find coin.  Grin
Sorry, can you correct English in your post? Otherwise it is hard to understand what you mean.

I'm meaning this: http://en.wikipedia.org/wiki/Dead_cat_bounce
jtalk
Legendary
*
Offline Offline

Activity: 1610
Merit: 1004



View Profile
February 18, 2015, 11:51:24 AM
 #1458

slow progress is better than no progress  Roll Eyes
Things always should be in move it doesn't matter upward or downward as moving is sing of life. I am happy development is undergoing and sooner will seen some change.


OOOBTC.com




▬▬▬▬▬▬ ●  ● ▬▬▬▬▬▬▬ ●  ● ▬▬▬▬▬▬▬ ●  ● ▬▬▬▬▬▬



Bounty
[/center]
Inotanewbie
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250


www.CloudThink.IO


View Profile WWW
February 18, 2015, 07:42:38 PM
 #1459

You're trying a dead cat bouncing before the definitely end of find coin.  Grin

End of Findcoin? Not while there is a community my friend. End of you're btc you invested in crypto alliance on the other hand is a sure thing  Grin

cloudthink.io   



 



 



 



 



 



Truly Profitable Investment Packages
Custom-Built ASIC Miners ● #1 Self-Sustainable Bitcoin Mining Service in the World ●
Quadmium
Full Member
***
Offline Offline

Activity: 184
Merit: 100



View Profile
February 18, 2015, 10:50:32 PM
 #1460

-snip-

ok, let's see if I can help with this one.
Both formulas lead to the same solution, the difference however is the order of operations.
in the first version you have division by COIN after converting to int, in the second before.
That may have importance.



Yea I guess, its the only thing I can see affecting the calculation. I'll go ahead and run some tests and check if there is actually a difference.
Did you manage to check that? Please, let me know what the outcome was.

Sorry for the late response, I am very busy during the week. However, in ~2 days I will have a lot of time to test and can look into this properly - I'll be sure to report once I check it out.
Pages: « 1 ... 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 »
  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!