Pages:
Author

Topic: ANN Tricky Dick Fun Bills. Mandatory wallet update plz update to wallet 1.1 - page 8. (Read 9888 times)

newbie
Activity: 42
Merit: 0
With Tricky Dick Fun Bills it pays to keep them in the bank
full member
Activity: 205
Merit: 100
Its getting time to find an exchange.  Start asking around.

I agree. Make it easier for those who cannot mine to acquire some coins to stake. There are ~250,000 coins available in the hiPOS blocks.

I hope I hit a 300 block AND get a multiplier of 5.5  Cheesy
newbie
Activity: 42
Merit: 0
Its getting time to find an exchange.  Start asking around.
full member
Activity: 193
Merit: 100
Good afternoon. We have procured a few horned rim glasses wearing squares to build a block explorer.  Take that you hippies!

Woop woop..... loving this
newbie
Activity: 42
Merit: 0
We need more miners!
Yes we do. Unlike other coins Tricky Dick is active and secretly recording all your convos.
full member
Activity: 196
Merit: 100
newbie
Activity: 42
Merit: 0
Good afternoon. We have procured a few horned rim glasses wearing squares to build a block explorer.  Take that you hippies!
hero member
Activity: 560
Merit: 500
Am i broke yet?
Windows wallet broken.  Runtime error and crash.
update windows.  mine works fine. running Win 10
full member
Activity: 193
Merit: 100


When will this hit Bittrex...... can't wait for this to skyrocket





hero member
Activity: 596
Merit: 500
My is still working, 15 transactions, no problem.

Maybe something with Visual C++? I have many versions and updates.


hero member
Activity: 882
Merit: 500
MiG Messenger - earn while chatting
Windows wallet broken.  Runtime error and crash.

my working fine on Windows 7 x64



Shadow_Runner posted on this issue too, and I'm also on Win7 x64.
hero member
Activity: 596
Merit: 500
Windows wallet broken.  Runtime error and crash.

my working fine on Windows 7 x64
hero member
Activity: 882
Merit: 500
MiG Messenger - earn while chatting
Windows wallet broken.  Runtime error and crash.
newbie
Activity: 42
Merit: 0
Updated the ANN with staking info.
full member
Activity: 196
Merit: 100
We need to develop a detailed plan!
sr. member
Activity: 440
Merit: 250
What is the total float? Need more info
full member
Activity: 196
Merit: 100
The sale of some coins, to PM
full member
Activity: 205
Merit: 100
wow, thats some intense staking  Shocked

maybe place this info in OP (formatted so its easier to read)?

Code:
// PoS starts at block 3500
int64_t nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8);  // default is 4% per year

if(pindexBest->nHeight < 4000)
{
    nSubsidy = 20 * COIN;
}
else if(pindexBest->nHeight < 4600)
{
    nSubsidy = 12 * COIN;
}
else if(pindexBest->nHeight < 5000)
{
    nSubsidy = 4 * COIN;
}
else if(pindexBest->nHeight < 5100)
{
    nSubsidy = 200 * COIN;
}
else if(pindexBest->nHeight < 5900)
{
    nSubsidy = 12 * COIN;
}
else if(pindexBest->nHeight < 6500)
{
    nSubsidy = 20 * COIN;
}
else if(pindexBest->nHeight < 6600)
{
    nSubsidy = 50 * COIN;
}
else if(pindexBest->nHeight < 7500)
{
    nSubsidy = 12 * COIN;
}
else if(pindexBest->nHeight < 8200)
{
    nSubsidy = 4 * COIN;
}
else if(pindexBest->nHeight < 8300)
{
    nSubsidy = 100 * COIN;
}
else if(pindexBest->nHeight < 10000)
{
    nSubsidy = 4 * COIN;
}
else if(pindexBest->nHeight < 10050)
{
    nSubsidy = 100 * COIN;
}
else if(pindexBest->nHeight < 10100)
{
    nSubsidy = 300 * COIN;
}
else if(pindexBest->nHeight < 10150)
{
    nSubsidy = 100 * COIN;
}
else if(pindexBest->nHeight < 15000)
{
    nSubsidy = 8 * COIN;
}
else if(pindexBest->nHeight < 16000)
{
    nSubsidy = 50 * COIN;
}
else if(pindexBest->nHeight < 19500)
{
    nSubsidy = 4 * COIN;
}
else if(pindexBest->nHeight < 20000)
{
    nSubsidy = 100 * COIN;
}


int64_t multiplier = 100; // is really 1.00 as nSubsidy shall be div 100 later
int64_t nMultVal = 0;

for (int i = 1; i < 8; i += 2)
{
    nMultVal += pindexBest->pprev->GetBlockHash().getinnerint(i) >> 2;
}

if (nMultVal % 10000 == 0)
{
    multiplier = 550; // 5.5
}
else if (nMultVal % 1000 == 0)
{
    multiplier = 250; // 2.5
}
else if (nMultVal % 100 == 0)
{
    multiplier = 50; // 0.5
}
else
{
    int n = nMultVal % 10;
    if (n < 5)
    {
        multiplier += n * 10; // either 1.0, 1.1, 1.2, 1.3, or 1.4
    }
    else if (n > 5)
    {
        multiplier = n * 10; // either 0.9, 0.8, 0.7, or 0.6
    }
}

if (pindexBest->nHeight > 20000 && multiplier > 100)
{
    multiplier *= 10;
}


nSubsidy = (nSubsidy * multiplier) / 100;

return nSubsidy + nFees;
newbie
Activity: 42
Merit: 0
Good Launch. Hash away!
Pages:
Jump to: