Author

Topic: ⚡[ANN]⚡ ▐░Espers [ESP]░▌▐░PoW/PoS░▌▐░HMQ1725 Algo░▌ ▐░New Features░▌ - page 431. (Read 923924 times)

hero member
Activity: 1036
Merit: 506
Coderz of the Crypto variety
Every time I send the number can not be more than 2000000 of the coin to novaexchange
What is the reason?
Most start can be sent more than 20000000
And less and less
Now I can only send about 2000000 coins, and the number of each time can also be reduced.
I still have a lot of dgtm to send
   

It's because your attempting to send more than 150 inputs even though it's not amounting to a many coins.
This is one of the reasons why we are swapping and we apologize for the inconvenience however once you swap you will not have this issue.




crap advertisemenet goes here

What the hell is this doing here, is GPUcoin really spamming other coin's threads expecting users to just bail?

No, but if your interested you can trade ESP for GPU coin and back and forth @ nova exchange . .

I have been making money for days trading esp for gpu and back !!!! awsome support @ nova !!!

Please stop advertising in this thread. It is extremely unprofessional and degrading only to the project that is spamming.
Thank you for your interest in Espers.




Funny thing is that same guy is the dev of the coin he is promoting, truly unprofessional and act of desperation.

Meh, right now we're 80% finished with recompiling the node clients. So everything will be gravy here in a bit. Not paying attention to much else.
you always have many supporters here dev so the community is well protected, good luck to your project we will wait for further updates.

Thank you for your support Smiley, The full client is going to be pretty cool. Think you guys will like it.
full member
Activity: 168
Merit: 100
Every time I send the number can not be more than 2000000 of the coin to novaexchange
What is the reason?
Most start can be sent more than 20000000
And less and less
Now I can only send about 2000000 coins, and the number of each time can also be reduced.
I still have a lot of dgtm to send
   
hero member
Activity: 1302
Merit: 540
crap advertisemenet goes here

What the hell is this doing here, is GPUcoin really spamming other coin's threads expecting users to just bail?

No, but if your interested you can trade ESP for GPU coin and back and forth @ nova exchange . .

I have been making money for days trading esp for gpu and back !!!! awsome support @ nova !!!

Please stop advertising in this thread. It is extremely unprofessional and degrading only to the project that is spamming.
Thank you for your interest in Espers.




Funny thing is that same guy is the dev of the coin he is promoting, truly unprofessional and act of desperation.

Meh, right now we're 80% finished with recompiling the node clients. So everything will be gravy here in a bit. Not paying attention to much else.
you always have many supporters here dev so the community is well protected, good luck to your project we will wait for further updates.
hero member
Activity: 1036
Merit: 506
Coderz of the Crypto variety
crap advertisemenet goes here

What the hell is this doing here, is GPUcoin really spamming other coin's threads expecting users to just bail?

No, but if your interested you can trade ESP for GPU coin and back and forth @ nova exchange . .

I have been making money for days trading esp for gpu and back !!!! awsome support @ nova !!!

Please stop advertising in this thread. It is extremely unprofessional and degrading only to the project that is spamming.
Thank you for your interest in Espers.




Funny thing is that same guy is the dev of the coin he is promoting, truly unprofessional and act of desperation.

Meh, right now we're 80% finished with recompiling the node clients. So everything will be gravy here in a bit. Not paying attention to much else.
legendary
Activity: 1764
Merit: 1000
crap advertisemenet goes here

What the hell is this doing here, is GPUcoin really spamming other coin's threads expecting users to just bail?

No, but if your interested you can trade ESP for GPU coin and back and forth @ nova exchange . .

I have been making money for days trading esp for gpu and back !!!! awsome support @ nova !!!

Please stop advertising in this thread. It is extremely unprofessional and degrading only to the project that is spamming.
Thank you for your interest in Espers.




Funny thing is that same guy is the dev of the coin he is promoting, truly unprofessional and act of desperation.
hero member
Activity: 1036
Merit: 506
Coderz of the Crypto variety
crap advertisemenet goes here

What the hell is this doing here, is GPUcoin really spamming other coin's threads expecting users to just bail?

No, but if your interested you can trade ESP for GPU coin and back and forth @ nova exchange . .

I have been making money for days trading esp for gpu and back !!!! awsome support @ nova !!!

Please stop advertising in this thread. It is extremely unprofessional and degrading only to the project that is spamming.
Thank you for your interest in Espers.


a doubt! It has already been released a new pool of Espers V2?

Think maxminer is reconfiguring
newbie
Activity: 20
Merit: 0
a doubt! It has already been released a new pool of Espers V2?
hero member
Activity: 561
Merit: 500
hero member
Activity: 1036
Merit: 506
Coderz of the Crypto variety
hero member
Activity: 561
Merit: 500
hero member
Activity: 1036
Merit: 506
Coderz of the Crypto variety
Your code:
Code:
    int64_t nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8);

    // Previously nBestHeight
    if(pindexBest->nHeight > 20000){
      nSubsidy = nCoinAge * COIN_YEAR_REWARD2 * 33 / (365 * 33 + 8);
    }
    // Previously nBestHeight
    else if(pindexBest->nHeight > 2000800){
      nSubsidy = nCoinAge * COIN_YEAR_REWARD3 * 33 / (365 * 33 + 8);
    }
    else if(pindexBest->nHeight > 3000300){
      nSubsidy = nCoinAge * COIN_YEAR_REWARD4 * 33 / (365 * 33 + 8);
    }

Always the first if will "run" after 20000, even height is 20M or 30M!

good code:
Code:
if (height > 3000000) {
  nSubsidy = nCoinAge * COIN_YEAR_REWARD4 * 33 / (365 * 33 + 8);
}
else if (height > 2000000) {
  nSubsidy = nCoinAge * COIN_YEAR_REWARD3 * 33 / (365 * 33 + 8);
}
else if (height > 20000) {
  nSubsidy = nCoinAge * COIN_YEAR_REWARD2 * 33 / (365 * 33 + 8);
}


... Updating github again. Definitely see what you mean. Been a long past couple days. Thankfully that isn't nearly as bad. (would still have the millions of blocks to go before it would be an issue).

Edit: GitHub updated & new windows EXE link on OP of ANN as well. And now mac as well.


Correcting it now anyway to take care of it. Will re-update the nodes again.
Also will notify Nova one more time just so we can be done with this and move onto features.
hero member
Activity: 561
Merit: 500
Your code:
Code:
    int64_t nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8);

    // Previously nBestHeight
    if(pindexBest->nHeight > 20000){
      nSubsidy = nCoinAge * COIN_YEAR_REWARD2 * 33 / (365 * 33 + 8);
    }
    // Previously nBestHeight
    else if(pindexBest->nHeight > 2000800){
      nSubsidy = nCoinAge * COIN_YEAR_REWARD3 * 33 / (365 * 33 + 8);
    }
    else if(pindexBest->nHeight > 3000300){
      nSubsidy = nCoinAge * COIN_YEAR_REWARD4 * 33 / (365 * 33 + 8);
    }

Always the first if will "run" after 20000, even height is 20M or 30M!

good code:
Code:
if (height > 3000000) {
  nSubsidy = nCoinAge * COIN_YEAR_REWARD4 * 33 / (365 * 33 + 8);
}
else if (height > 2000000) {
  nSubsidy = nCoinAge * COIN_YEAR_REWARD3 * 33 / (365 * 33 + 8);
}
else if (height > 20000) {
  nSubsidy = nCoinAge * COIN_YEAR_REWARD2 * 33 / (365 * 33 + 8);
}
sorry but where I put this code and windows or linux
hero member
Activity: 525
Merit: 531
Your code:
Code:
    int64_t nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8);

    // Previously nBestHeight
    if(pindexBest->nHeight > 20000){
      nSubsidy = nCoinAge * COIN_YEAR_REWARD2 * 33 / (365 * 33 + 8);
    }
    // Previously nBestHeight
    else if(pindexBest->nHeight > 2000800){
      nSubsidy = nCoinAge * COIN_YEAR_REWARD3 * 33 / (365 * 33 + 8);
    }
    else if(pindexBest->nHeight > 3000300){
      nSubsidy = nCoinAge * COIN_YEAR_REWARD4 * 33 / (365 * 33 + 8);
    }

Always the first if will "run" after 20000, even height is 20M or 30M!

good code:
Code:
if (height > 3000000) {
  nSubsidy = nCoinAge * COIN_YEAR_REWARD4 * 33 / (365 * 33 + 8);
}
else if (height > 2000000) {
  nSubsidy = nCoinAge * COIN_YEAR_REWARD3 * 33 / (365 * 33 + 8);
}
else if (height > 20000) {
  nSubsidy = nCoinAge * COIN_YEAR_REWARD2 * 33 / (365 * 33 + 8);
}
hero member
Activity: 1036
Merit: 506
Coderz of the Crypto variety
@Everyone

Novaexchange replied they're already running the latest client version.
All of the nodes are currently being one by one relaunched with the latest version as well.

Just be sure to run 0.8.4.1 and everything will be gravy.
sr. member
Activity: 406
Merit: 250
I Shall Rise Again From The Ashes Of My Failures.
What happen to those that do not update their client now?
they wont be able to mine untill they update, they also wont be able to stake, and any coins they receive after wards will not actually be theres. if they save the wallet.dat however all previous coins should remain intact however it is best to just update and avoid the entire headache.
hero member
Activity: 966
Merit: 501
What happen to those that do not update their client now?
hero member
Activity: 966
Merit: 501

No, i dont know how to delete it. Am using Windowns 10.  Should i uninstal the wallet?

Open COMPUTER-->Drive C:-->Users-->YOUR_USERNAME-->AppData-->Roaming-->Espers

Delete EVERYTHING in that folder (besides the wallet.dat if you want to save a step)

Then open the client again


please should have an explanatory video teaching to do the mining for where you are mining for I am from Brazil and forum.brasileiro here ta stopped too

We are actually going to be releasing guides and videos for much of this. It's just one thing at a time. Initial launch is always a little rocky but it's been leveled out now as far as codebase so now we can focus on other things such as guides.

Also note that you must have to enable show hidden folder.
hero member
Activity: 561
Merit: 500
hero member
Activity: 561
Merit: 500

No, i dont know how to delete it. Am using Windowns 10.  Should i uninstal the wallet?

Open COMPUTER-->Drive C:-->Users-->YOUR_USERNAME-->AppData-->Roaming-->Espers

Delete EVERYTHING in that folder (besides the wallet.dat if you want to save a step)

Then open the client again


please should have an explanatory video teaching to do the mining for where you are mining for I am from Brazil and forum.brasileiro here ta stopped too

We are actually going to be releasing guides and videos for much of this. It's just one thing at a time. Initial launch is always a little rocky but it's been leveled out now as far as codebase so now we can focus on other things such as guides.

ok thank you devs
WHAT happened to mining in maxminers stopped

They are most likely upgrading to ESP2 (We messaged them about it)
the single poll that 's to mine and maxminers
hero member
Activity: 1036
Merit: 506
Coderz of the Crypto variety

No, i dont know how to delete it. Am using Windowns 10.  Should i uninstal the wallet?

Open COMPUTER-->Drive C:-->Users-->YOUR_USERNAME-->AppData-->Roaming-->Espers

Delete EVERYTHING in that folder (besides the wallet.dat if you want to save a step)

Then open the client again


please should have an explanatory video teaching to do the mining for where you are mining for I am from Brazil and forum.brasileiro here ta stopped too

We are actually going to be releasing guides and videos for much of this. It's just one thing at a time. Initial launch is always a little rocky but it's been leveled out now as far as codebase so now we can focus on other things such as guides.

ok thank you devs
WHAT happened to mining in maxminers stopped

They are most likely upgrading to ESP2 (We messaged them about it)
Jump to: