Author

Topic: [ANN][BURST] Burst | Efficient HDD Mining | New 1.2.3 Fork block 92000 - page 1040. (Read 2171085 times)

hero member
Activity: 518
Merit: 500
Deve should cut total amount. 2 billion is too much. This coin si gonna ne big, if che cut the way to moon si guaranteed

For some people who can't read.

Block reward starts at 10,000/block, then decreases 5% each month (similar to halving every 14 months, but much smoother)

we are producing 3.6M a day per 420(14 months) = 1.5B coin, the mining will end in 660 days, basically there is no halving lmao

Thats not how the client does it.

Quote
   @Override
    public long getBlockReward() {
        if(this.height == 0 || this.height >= 1944000) {
                return 0;
        }
        int month = this.height / 10800;
        long reward = BigInteger.valueOf(10000)
                        .multiply(BigInteger.valueOf(95).pow(month))
                        .divide(BigInteger.valueOf(100).pow(month)).longValue() * Constants.ONE_NXT;
    
        return reward;
    }

From block 1944000 on we get no more reward, before that its 10000 * (floor(height / 10800)) ^ 0.95

mh, ok i didn't check that, 5% a month is still too low, is asking for dumping

2 billion isn't that bad, it helps with distribution and adoption a bit.

Honestly, if people are complaining about this, then make your own PoC coin out of the source code. Live with it or do something about it.



clone of this will pop up soon, maybe written in c++, with a standard gui and everything

Good, then people will stop complaining and go chase the greed train to hell.... The intent of this coin originally was to introduce a new mining technology, not satisfy peoples lustful greed....
legendary
Activity: 3248
Merit: 1072
Deve should cut total amount. 2 billion is too much. This coin si gonna ne big, if che cut the way to moon si guaranteed

For some people who can't read.

Block reward starts at 10,000/block, then decreases 5% each month (similar to halving every 14 months, but much smoother)

we are producing 3.6M a day per 420(14 months) = 1.5B coin, the mining will end in 660 days, basically there is no halving lmao

Thats not how the client does it.

Quote
   @Override
    public long getBlockReward() {
        if(this.height == 0 || this.height >= 1944000) {
                return 0;
        }
        int month = this.height / 10800;
        long reward = BigInteger.valueOf(10000)
                        .multiply(BigInteger.valueOf(95).pow(month))
                        .divide(BigInteger.valueOf(100).pow(month)).longValue() * Constants.ONE_NXT;
    
        return reward;
    }

From block 1944000 on we get no more reward, before that its 10000 * (floor(height / 10800)) ^ 0.95

mh, ok i didn't check that, 5% a month is still too low, is asking for dumping

2 billion isn't that bad, it helps with distribution and adoption a bit.

Honestly, if people are complaining about this, then make your own PoC coin out of the source code. Live with it or do something about it.



clone of this will pop up soon, maybe written in c++, with a standard gui and everything
hero member
Activity: 518
Merit: 500

Please stop with the FUD. Really, your doing no justice to the project. Make your point, prove your point and give actual facts behind it, otherwise, please leave....
sr. member
Activity: 280
Merit: 250
it's a bit strange. mining on v2 pool, having shares, but on curent user balance, shows nothing...
What account number?

10979493466573385217
switched early in morning from v1 to v2
switched 2 pcs and one is working fine and show the balance, but the second shows nothing Smiley

Did you update the ip in your bat file?

 java -cp pocminer_pool.jar;lib/*;lib/akka/*;lib/jetty/* pocminer_pool.POCMiner mine http://127.0.0.1:8125 http://178.62.39.204:8121

this is mine.bat
in the last 8 minutes already submited more than 5 shares
on v1 made on that pc over 800 coins in 2 hours.
on v2 - made crap.. nothing... so i might go back to v1 if v2 has a bug Smiley

I don't know. I haven't had any bugs so far that didn't turn out to be user error, but I'm drawing a blank on this for now.
hero member
Activity: 518
Merit: 500
Deve should cut total amount. 2 billion is too much. This coin si gonna ne big, if che cut the way to moon si guaranteed

For some people who can't read.

Block reward starts at 10,000/block, then decreases 5% each month (similar to halving every 14 months, but much smoother)

we are producing 3.6M a day per 420(14 months) = 1.5B coin, the mining will end in 660 days, basically there is no halving lmao

Thats not how the client does it.

Quote
   @Override
    public long getBlockReward() {
        if(this.height == 0 || this.height >= 1944000) {
                return 0;
        }
        int month = this.height / 10800;
        long reward = BigInteger.valueOf(10000)
                        .multiply(BigInteger.valueOf(95).pow(month))
                        .divide(BigInteger.valueOf(100).pow(month)).longValue() * Constants.ONE_NXT;
    
        return reward;
    }

From block 1944000 on we get no more reward, before that its 10000 * (floor(height / 10800)) ^ 0.95

mh, ok i didn't check that, 5% a month is still too low, is asking for dumping

2 billion isn't that bad, it helps with distribution and adoption a bit.

Honestly, if people are complaining about this, then make your own PoC coin out of the source code. Live with it or do something about it.

full member
Activity: 138
Merit: 100
you can't cut after 81m coins generated. how can you explain me after i sold 700k. i did my plans for 2b coin.  people buy, hold or sell. max coin amount defined at startup and shouldnt change.


Deve should cut total amount. 2 billion is too much. This coin si gonna ne big, if che cut the way to moon si guaranteed
member
Activity: 98
Merit: 10
it's a bit strange. mining on v2 pool, having shares, but on curent user balance, shows nothing...
What account number?

10979493466573385217
switched early in morning from v1 to v2
switched 2 pcs and one is working fine and show the balance, but the second shows nothing Smiley

Did you update the ip in your bat file?

 java -cp pocminer_pool.jar;lib/*;lib/akka/*;lib/jetty/* pocminer_pool.POCMiner mine http://127.0.0.1:8125 http://178.62.39.204:8121

this is mine.bat
in the last 8 minutes already submited more than 5 shares
on v1 made on that pc over 800 coins in 2 hours.
on v2 - made crap.. nothing... so i might go back to v1 if v2 has a bug Smiley
legendary
Activity: 3248
Merit: 1072
Deve should cut total amount. 2 billion is too much. This coin si gonna ne big, if che cut the way to moon si guaranteed

For some people who can't read.

Block reward starts at 10,000/block, then decreases 5% each month (similar to halving every 14 months, but much smoother)

we are producing 3.6M a day per 420(14 months) = 1.5B coin, the mining will end in 660 days, basically there is no halving lmao

Thats not how the client does it.

Quote
   @Override
    public long getBlockReward() {
        if(this.height == 0 || this.height >= 1944000) {
                return 0;
        }
        int month = this.height / 10800;
        long reward = BigInteger.valueOf(10000)
                        .multiply(BigInteger.valueOf(95).pow(month))
                        .divide(BigInteger.valueOf(100).pow(month)).longValue() * Constants.ONE_NXT;
    
        return reward;
    }

From block 1944000 on we get no more reward, before that its 10000 * (floor(height / 10800)) ^ 0.95

mh, ok i didn't check that, 5% a month is still too low, is asking for dumping
sr. member
Activity: 280
Merit: 250
Deve should cut total amount. 2 billion is too much. This coin si gonna ne big, if che cut the way to moon si guaranteed

For some people who can't read.

Block reward starts at 10,000/block, then decreases 5% each month (similar to halving every 14 months, but much smoother)

we are producing 3.6M a day per 420(14 months) = 1.5B coin, the mining will end in 660 days, basically there is no halving lmao

Thats not how the client does it.

Quote
   @Override
    public long getBlockReward() {
        if(this.height == 0 || this.height >= 1944000) {
                return 0;
        }
        int month = this.height / 10800;
        long reward = BigInteger.valueOf(10000)
                        .multiply(BigInteger.valueOf(95).pow(month))
                        .divide(BigInteger.valueOf(100).pow(month)).longValue() * Constants.ONE_NXT;
    
        return reward;
    }

From block 1944000 on we get no more reward, before that its 10000 * 0.95 ^ (floor(height / 10800))
legendary
Activity: 3248
Merit: 1072
I see very big raise of BURTS Cheesy but it seems to be "return to normal". How you think ?

it was just a pump the one to 1ks+, but we should rise a new floor with that pump
sr. member
Activity: 355
Merit: 250
Deve should cut total amount. 2 billion is too much. This coin si gonna ne big, if che cut the way to moon si guaranteed

For some people who can't read.

Block reward starts at 10,000/block, then decreases 5% each month (similar to halving every 14 months, but much smoother)

we are producing 3.6M a day per 420(14 months) = 1.5B coin, the mining will end in 660 days, basically there is no halving lmao

Give me your math please. In next month block reward will be 9500, and in november 2015 block reward will be 5000.
member
Activity: 98
Merit: 10
I see very big raise of BURTS Cheesy but it seems to be "return to normal". How you think ?
member
Activity: 79
Merit: 10
how can i switch from v1 to v2?
member
Activity: 98
Merit: 10
it's a bit strange. mining on v2 pool, having shares, but on curent user balance, shows nothing...
What account number?

10979493466573385217
switched early in morning from v1 to v2
switched 2 pcs and one is working fine and show the balance, but the second shows nothing Smiley

Did you update the ip in your bat file?

 java -cp pocminer_pool.jar;lib/*;lib/akka/*;lib/jetty/* pocminer_pool.POCMiner mine http://127.0.0.1:8125 http://178.62.39.204:8121

this is mine.bat
in the last 8 minutes already submited more than 5 shares
sr. member
Activity: 280
Merit: 250
it's a bit strange. mining on v2 pool, having shares, but on curent user balance, shows nothing...
What account number?

10979493466573385217
switched early in morning from v1 to v2
switched 2 pcs and one is working fine and show the balance, but the second shows nothing Smiley

Did you update the ip in your bat file?
legendary
Activity: 3248
Merit: 1072
Deve should cut total amount. 2 billion is too much. This coin si gonna ne big, if che cut the way to moon si guaranteed

For some people who can't read.

Block reward starts at 10,000/block, then decreases 5% each month (similar to halving every 14 months, but much smoother)

we are producing 3.6M a day per 420(14 months) = 1.5B coin, the mining will end in 660 days, basically there is no halving lmao
hero member
Activity: 518
Merit: 500
Deve should cut total amount. 2 billion is too much. This coin si gonna ne big, if che cut the way to moon si guaranteed

For some people who can't read.

Block reward starts at 10,000/block, then decreases 5% each month (similar to halving every 14 months, but much smoother)

Some people don't read the context well or choose not too. Some think that it meant 14 months that the mining will be over.

Maybe a translation pages for the major languages, other than English, need to be on the to do list for the project.
hero member
Activity: 672
Merit: 500
Deve should cut total amount. 2 billion is too much. This coin si gonna ne big, if che cut the way to moon si guaranteed

For some people who can't read.

Block reward starts at 10,000/block, then decreases 5% each month (similar to halving every 14 months, but much smoother)
Should do 25% or 10% each month  Tongue
sr. member
Activity: 355
Merit: 250
Deve should cut total amount. 2 billion is too much. This coin si gonna ne big, if che cut the way to moon si guaranteed

For some people who can't read.

Block reward starts at 10,000/block, then decreases 5% each month (similar to halving every 14 months, but much smoother)
Jump to: