Bitcoin Forum
June 26, 2024, 07:38:00 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: Should we lower the stake interest?
Yes, to 50% - 5 (20%)
Yes, to 25% - 1 (4%)
Yes, to 10% - 7 (28%)
Yes, to 5% - 2 (8%)
No - 10 (40%)
Total Voters: 25

Pages: « 1 2 3 4 5 6 7 8 9 [10] 11 12 13 14 15 16 17 18 »  All
  Print  
Author Topic: [ANN] DustCoin DUST 100% PoS Yobit ICO (v1.2)  (Read 25084 times)
caex
Hero Member
*****
Offline Offline

Activity: 824
Merit: 512



View Profile
February 05, 2016, 04:18:36 PM
 #181

POS 1000% does not work as it should  <> DUST minted +1.74834339 Cheesy
wallet v1.1.0.0
SCAM?
DustCoinDev (OP)
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
February 05, 2016, 04:42:14 PM
 #182

POS 1000% does not work as it should  <> DUST minted +1.74834339 Cheesy
wallet v1.1.0.0
SCAM?


Why not ask in a normal way instead of shouting SCAM?
MichaelPPP
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
February 05, 2016, 05:09:54 PM
 #183

POS 1000% does not work as it should  <> DUST minted +1.74834339 Cheesy
wallet v1.1.0.0
SCAM?


seems like the biggest wallet doing PoS

Where's the PoB from yobit??
DustCoinDev (OP)
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
February 05, 2016, 05:12:36 PM
Last edit: February 05, 2016, 05:32:50 PM by DustCoinDev
 #184

POS 1000% does not work as it should  <> DUST minted +1.74834339 Cheesy
wallet v1.1.0.0
SCAM?


seems like the biggest wallet doing PoS

Where's the PoB from yobit??

Tell me, how do you think that Yobit can burn the coins when the buy wall is still active. Are you that ignorant?
MichaelPPP
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
February 05, 2016, 05:41:59 PM
 #185

BTW

https://i.imgur.com/zDg0vit.png
DustCoinDev (OP)
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
February 05, 2016, 05:49:48 PM
 #186


This is what happens when your computers date / time is wrong.
Turing
Sr. Member
****
Offline Offline

Activity: 994
Merit: 277



View Profile
February 05, 2016, 06:29:25 PM
 #187

I got my first stake  Grin
Smalik
Newbie
*
Offline Offline

Activity: 38
Merit: 0


View Profile
February 05, 2016, 06:57:27 PM
 #188

POS 1000% does not work Sad
1.44399953
0.3329086
Dev, expected hotfix?
DustCoinDev (OP)
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
February 05, 2016, 08:03:06 PM
 #189

POS 1000% does not work Sad
1.44399953
0.3329086
Dev, expected hotfix?

Working on a fix right now

Paбoтa нaд иcпpaвлeниeм ceйчac
MichaelPPP
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
February 05, 2016, 08:49:35 PM
 #190

POS 1000% does not work Sad
1.44399953
0.3329086
Dev, expected hotfix?

Working on a fix right now

Paбoтa нaд иcпpaвлeниeм ceйчac

right now.

SCAM. CONFIRMED.
DustCoinDev (OP)
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
February 05, 2016, 08:52:12 PM
 #191

I do not see any error in the code:

Code:
int64_t GetProofOfStakeReward(int64_t nCoinAge, int64_t nFees)
{
    int64_t nRewardCoinYear = 10 * COIN;

if (pindexBest->nHeight >= FORK_HEIGHT)
{
nRewardCoinYear = nRewardCoinYear * 100;

if (pindexBest->nHeight <= FORK_HEIGHT+3200)
{
nRewardCoinYear = nRewardCoinYear * 10;
}
}

    int64_t nSubsidy = nCoinAge * nRewardCoinYear / 365 / COIN;

    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nCoinAge);

    return nSubsidy + nFees;
}
raetsch
Legendary
*
Offline Offline

Activity: 957
Merit: 1006



View Profile
February 05, 2016, 08:53:47 PM
 #192

watch your if...

DustCoinDev (OP)
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
February 05, 2016, 08:54:53 PM
 #193

POS 1000% does not work Sad
1.44399953
0.3329086
Dev, expected hotfix?

Working on a fix right now

Paбoтa нaд иcпpaвлeниeм ceйчac

right now.

SCAM. CONFIRMED.

Whats wrong with you? Mental disorder? Go bother someone else.
DustCoinDev (OP)
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
February 05, 2016, 08:59:11 PM
 #194

watch your if...



It says that if the "block height" is greater than or equals the "fork block height" then do something:

Code:
if (pindexBest->nHeight >= FORK_HEIGHT)

That something would be to do the reward times 100 (was 1% will be 100%):

Code:
nRewardCoinYear = nRewardCoinYear * 100;

I honestly don't see anything wrong there. (Does not mean I won't keep looking)
raetsch
Legendary
*
Offline Offline

Activity: 957
Merit: 1006



View Profile
February 05, 2016, 09:15:26 PM
 #195

you are right, was confused a bit. 23200-26400=10000*coin
26401=1000*coin
bigs21024
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250

please help gofund.me/bigs21024 Family in need


View Profile
February 05, 2016, 09:27:29 PM
 #196

Dust any good i got some. give it a shot its low

DustCoinDev (OP)
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
February 05, 2016, 09:28:04 PM
 #197

you are right, was confused a bit. 23200-26400=10000*coin
26401=1000*coin


Strange right? It should give 1000% stake rate at the moment, but it does not.

I'm looking at the data type of the variables that are compared. One is 'int' (pindexBest->nHeight) and the other is 'int64_t' (FORK_HEIGHT) maybe thats why they don't compare very well. Still searching.
AltcoinSteps
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250


Let's make a new altcoin environment.


View Profile WWW
February 05, 2016, 09:35:23 PM
 #198

dev, you russian?

Steps - Let's make a new altcoin environment.  | Join Us Now!
DustCoinDev (OP)
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
February 05, 2016, 09:37:26 PM
 #199

dev, you russian?

No, I am good with Google translator.  Wink
DustCoinDev (OP)
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
February 05, 2016, 09:40:09 PM
 #200

you are right, was confused a bit. 23200-26400=10000*coin
26401=1000*coin


Strange right? It should give 1000% stake rate at the moment, but it does not.

I'm looking at the data type of the variables that are compared. One is 'int' (pindexBest->nHeight) and the other is 'int64_t' (FORK_HEIGHT) maybe thats why they don't compare very well. Still searching.

If anyone has an idea then please let me know.
Pages: « 1 2 3 4 5 6 7 8 9 [10] 11 12 13 14 15 16 17 18 »  All
  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!