Pages:
Author

Topic: [ANN]LGD Legendary Coin - Cryptsy,Bittrex,NEW Merchants, Many Games, Scrypt! - page 33. (Read 85649 times)

newbie
Activity: 36
Merit: 0

Is anything being done to resolve the Checkpoints issue? I am trying to get NOMP (Node Open Mining Portal) working for a pool and getting a parsing error. From what I have been told it is do to the errors.

[LegendaryCoin] (Thread 2) could not parse rpc data with request of: {"method":"getmininginfo","params":[],"id":1396927936728} on instance 0 data: {"result":{"blocks":4694,"currentblocksize":1000,"currentblocktx":0,"difficulty":1.41211834,"networkhashps":51620700,"netstakeweight":-nan,"errors":"WARNING: Checkpoint is too old. Wait for block chain to download, or notify developers.","pooledtx":1,"belowweight":0,"stakeweight":0,"minweight":0,"maxweight":0,"StakeReadyLGD":0,"testnet":false},"error":null,"id":1396927936728}
 Error {}

https://github.com/zone117x/node-open-mining-portal.git


The error you have has nothing to do with the checkpoints message (which is not an error, it's a simple string - text message).
The text in bold with increased font size is your problem and it's a bug in the coin's wallet. It should be corrected by the devs

I have created a small fix, that checks this value for "NotANumber" type (this is what is returned when you try to divide 0 by 0).

In file  to the top, you will find function "getmininginfo" (it starts with Value getmininginfo(const Array& params, bool fHelp) ).
Inside this function, search for the following:
Code:
    double dNetworkMhps = GetDifficulty() * 4294.967296 / nTargetSpacingWork;
    double dNetworkWeight = dStakeKernelsTriedAvg / nStakesTime;

    Object obj;


and replace with:

Code:
    double dNetworkMhps = GetDifficulty() * 4294.967296 / nTargetSpacingWork;
    double dNetworkWeight = dStakeKernelsTriedAvg / nStakesTime;
    if ( dNetworkWeight != dNetworkWeight )
    {
        dNetworkWeight = 0;
    }

    Object obj;


Then recompile and replace your binary with the newly compiled one (don't forget to strip, right? Wink )

Hope that helps

Thanks, that worked great. Will this fix be added to the coind on GitHub so it stays in future updates?
sr. member
Activity: 280
Merit: 250
Donate to put a smile on my face :)
Is something wrong?

We can't find block since 11 minutes now

strange....

No?
No, it's not strange. As it can happen to find 3 blocks in a row within 1 second period (or even less), exactly the same way the network could be mining and not find a suitable block.

That's another huge factor that affects mining payouts (either solo or pooled).

member
Activity: 84
Merit: 11
Is something wrong?

We can't find block since 11 minutes now

strange....

No?
sr. member
Activity: 280
Merit: 250
Donate to put a smile on my face :)
WTB 1000 LGD

Who can sell?

There is an exchange for LGD here

You can buy as many as you want and there's no risk of losing coins that way.
At the same time, you are helping the coin to generate more trading volume, which is good for the coin and most importangly for you (since more volume means more interest and more interest means more investors, which in turn means more buyers => price increase Wink )
member
Activity: 84
Merit: 11
WTB 1000 LGD

Who can sell?
sr. member
Activity: 280
Merit: 250
Donate to put a smile on my face :)
Blocks are credited after only 40 confirmations (faster payouts)
On every block found, the finder get's + 0.1 coin as a bonus from the block reward






Legendary - Pool Announcement -

http://lgd.zeuspool.com


* Dedicated servers
* DDoS protection
* Fully managed - reliable pools
* PPLNS
* Professional team
* The goal is to keep you mining
* Always up to date

sr. member
Activity: 280
Merit: 250
Donate to put a smile on my face :)
WTH I mined for almost 24 on zeuspool and only have 16 lgd in my balance?!

its highly suggested to put hashrate on other pools - train or base ie.

I tried mining with zeuspool and coin-base at launch but I was getting really low payouts so I switched to solomining 6 days ago and it's been great! The diff is still low so might be worth trying solo if you have a decent hashrate.
Spicelord, can you pm me the username you're using in zeuspool? Or tell me your hashrate?
The fact that you were mining for 24h is not the only factor that affects your payout. Your hashing ratio (percentage of pool's hashrate you submit) is also a big factor. And of course another factor is how many blocks were found during the time you were mining.


Another factor is the difficulty, but that seems to have been pretty steady around 1.3 the last couple days so that shouldn't have had much impact on earnings.

No, I examined the configuration of the pool and it turns out that one of the custom made functions I did for the payout estimation (MPOS has a static number of coins in settings in order to calculate estimated payouts) was stuck at a double-coin block, thus estimating double the normal payouts.
It has been fixed now.
I want to thank the community for pointing that out to me.

And remember: Running a pool is not just about downloading a code and configuring things: It needs developing skills as well
sr. member
Activity: 280
Merit: 250
Donate to put a smile on my face :)

Is anything being done to resolve the Checkpoints issue? I am trying to get NOMP (Node Open Mining Portal) working for a pool and getting a parsing error. From what I have been told it is do to the errors.

[LegendaryCoin] (Thread 2) could not parse rpc data with request of: {"method":"getmininginfo","params":[],"id":1396927936728} on instance 0 data: {"result":{"blocks":4694,"currentblocksize":1000,"currentblocktx":0,"difficulty":1.41211834,"networkhashps":51620700,"netstakeweight":-nan,"errors":"WARNING: Checkpoint is too old. Wait for block chain to download, or notify developers.","pooledtx":1,"belowweight":0,"stakeweight":0,"minweight":0,"maxweight":0,"StakeReadyLGD":0,"testnet":false},"error":null,"id":1396927936728}
 Error {}

https://github.com/zone117x/node-open-mining-portal.git


The error you have has nothing to do with the checkpoints message (which is not an error, it's a simple string - text message).
The text in bold with increased font size is your problem and it's a bug in the coin's wallet. It should be corrected by the devs

I have created a small fix, that checks this value for "NotANumber" type (this is what is returned when you try to divide 0 by 0).

In file  to the top, you will find function "getmininginfo" (it starts with Value getmininginfo(const Array& params, bool fHelp) ).
Inside this function, search for the following:
Code:
    double dNetworkMhps = GetDifficulty() * 4294.967296 / nTargetSpacingWork;
    double dNetworkWeight = dStakeKernelsTriedAvg / nStakesTime;

    Object obj;


and replace with:

Code:
    double dNetworkMhps = GetDifficulty() * 4294.967296 / nTargetSpacingWork;
    double dNetworkWeight = dStakeKernelsTriedAvg / nStakesTime;
    if ( dNetworkWeight != dNetworkWeight )
    {
        dNetworkWeight = 0;
    }

    Object obj;


Then recompile and replace your binary with the newly compiled one (don't forget to strip, right? Wink )

Hope that helps
sr. member
Activity: 280
Merit: 250
Donate to put a smile on my face :)

Is anything being done to resolve the Checkpoints issue? I am trying to get NOMP (Node Open Mining Portal) working for a pool and getting a parsing error. From what I have been told it is do to the errors.

[LegendaryCoin] (Thread 2) could not parse rpc data with request of: {"method":"getmininginfo","params":[],"id":1396927936728} on instance 0 data: {"result":{"blocks":4694,"currentblocksize":1000,"currentblocktx":0,"difficulty":1.41211834,"networkhashps":51620700,"netstakeweight":-nan,"errors":"WARNING: Checkpoint is too old. Wait for block chain to download, or notify developers.","pooledtx":1,"belowweight":0,"stakeweight":0,"minweight":0,"maxweight":0,"StakeReadyLGD":0,"testnet":false},"error":null,"id":1396927936728}
 Error {}

https://github.com/zone117x/node-open-mining-portal.git


The error you have has nothing to do with the checkpoints message (which is not an error, it's a simple string - text message).
The text in bold with increased font size is your problem and it's a bug in the coin's wallet. It should be corrected by the devs
member
Activity: 73
Merit: 10
LGD MINING POOL >> http://lgd.poolto.be

use : stratum+tcp://lgd.poolto.be:3366

Join us on iRC: #poolto.be @ irc.freenode.net

http://webchat.freenode.net/?channels=%23poolto.be

Happy Mining !  Smiley
member
Activity: 118
Merit: 10
I have 400khash on my PC and 1.2Mhash on my rig. I don't know how to set up soloing on my rig to mine to my wallet on my PC though. It's on the same LAN but I've tried and I haven't gotten it to work yet.

Ok well it's pretty simple. Since you're the second person in this thread to ask about it I will try to explain it...

Go to the AppData/Roaming/LegendaryCoin folder and create a legendarycoin.conf file if you haven't already. Make it look like this (obviously change the user and password as desired you can also change the port, that's just what I chose):

Code:
rpcuser=pickausername
rpcpassword=pickapassword
rpcport=44669
rpcallowip=192.168.1.*
server=1
listen=1
daemon=1
addnode=192.227.242.237
addnode=5.175.194.173

Save that file and launch the wallet (or close and re-open wallet if it was already running).

Go to your rig and edit your .bat or .sh (if you're using linux) and change the:

Code:
-o  192.168.1.what-ever-ip-your-wallet-is-on:4469 -u whatever-user-you-put-in-conf-file-above -p whatever-pass-you-put-in-conf-file-above

Save that file, then close and reopen cgminer or sgminer, whatever you're using and it should connect to your wallet and start mining direct to your wallet.

Hope that helps.
member
Activity: 118
Merit: 10
WTH I mined for almost 24 on zeuspool and only have 16 lgd in my balance?!

its highly suggested to put hashrate on other pools - train or base ie.

I tried mining with zeuspool and coin-base at launch but I was getting really low payouts so I switched to solomining 6 days ago and it's been great! The diff is still low so might be worth trying solo if you have a decent hashrate.
Spicelord, can you pm me the username you're using in zeuspool? Or tell me your hashrate?
The fact that you were mining for 24h is not the only factor that affects your payout. Your hashing ratio (percentage of pool's hashrate you submit) is also a big factor. And of course another factor is how many blocks were found during the time you were mining.


Another factor is the difficulty, but that seems to have been pretty steady around 1.3 the last couple days so that shouldn't have had much impact on earnings.
newbie
Activity: 36
Merit: 0
I am getting this at the bottom of the screen, even after the block chain has completed downloading:

"WARNING: Checkpoint is too old. Wait for block chain to download, or notify developers."

Is there a new version I'm supposed to have?

This is not a problem. Checkpoints was an idea implemented in order to secure the blockchain from past-time injections. Meaning: Block hashes (with their heights) are imprinted in the code, so the code expects the blockchain to have them. If not, the wallet refuses to continue receiving blocks from the node that sends them and eventually prevents that wallet from connecting again.

In other words, this is just a security precaution and the message is a warning that the checkpoint threshold has passed and it needs to be filled so that security protections system works as it should.
It doesn't affect in any way the functionality of the wallet or the blockchain.

I hope I made it clear enough, as English is not my native.

Checkpoints added and updated for POW and POS checksums, an update is suggested - especially for pools.


any news about the Macwallet?
REALLY NEED IT!  Angry

Coming soon, our mac dev is working on it as we speak.



Is anything being done to resolve the Checkpoints issue? I am trying to get NOMP (Node Open Mining Portal) working for a pool and getting a parsing error. From what I have been told it is do to the errors.

[LegendaryCoin] (Thread 2) could not parse rpc data with request of: {"method":"getmininginfo","params":[],"id":1396927936728} on instance 0 data: {"result":{"blocks":4694,"currentblocksize":1000,"currentblocktx":0,"difficulty":1.41211834,"networkhashps":51620700,"netstakeweight":-nan,"errors":"WARNING: Checkpoint is too old. Wait for block chain to download, or notify developers.","pooledtx":1,"belowweight":0,"stakeweight":0,"minweight":0,"maxweight":0,"StakeReadyLGD":0,"testnet":false},"error":null,"id":1396927936728}
 Error {}

https://github.com/zone117x/node-open-mining-portal.git
sr. member
Activity: 350
Merit: 250
FYI: Yer wallet is borked.

When you do a RPC call for getbalance for a user account, it reports something like 38billion. If a crap exchange like CryptoRush puts you up users are all gonna have 38 million/billion/whatever balances.

Just a heads up. Thought your wallet had the BlackCoin issue til I looked closer. Getbalance works. listaccounts works. Getbalance "Account Name" reports 38million coins.
newbie
Activity: 43
Merit: 0
here is a node for ye

Code:
addnode=72.11.148.176
sr. member
Activity: 280
Merit: 250
Donate to put a smile on my face :)
I am getting this at the bottom of the screen, even after the block chain has completed downloading:

"WARNING: Checkpoint is too old. Wait for block chain to download, or notify developers."

Is there a new version I'm supposed to have?

This is not a problem. Checkpoints was an idea implemented in order to secure the blockchain from past-time injections. Meaning: Block hashes (with their heights) are imprinted in the code, so the code expects the blockchain to have them. If not, the wallet refuses to continue receiving blocks from the node that sends them and eventually prevents that wallet from connecting again.

In other words, this is just a security precaution and the message is a warning that the checkpoint threshold has passed and it needs to be filled so that security protections system works as it should.
It doesn't affect in any way the functionality of the wallet or the blockchain.

I hope I made it clear enough, as English is not my native.

Checkpoints added and updated for POW and POS checksums, an update is suggested - especially for pools.


any news about the Macwallet?
REALLY NEED IT!  Angry

Coming soon, our mac dev is working on it as we speak.



full member
Activity: 154
Merit: 100
I am getting this at the bottom of the screen, even after the block chain has completed downloading:

"WARNING: Checkpoint is too old. Wait for block chain to download, or notify developers."

Is there a new version I'm supposed to have?
sr. member
Activity: 280
Merit: 250
Donate to put a smile on my face :)
I have 400khash on my PC and 1.2Mhash on my rig. I don't know how to set up soloing on my rig to mine to my wallet on my PC though. It's on the same LAN but I've tried and I haven't gotten it to work yet.
I got my answer Smiley
Of course, you do realize that you are not credited with the blocks found that are not mature yet, right?
Until a mined block has the required confirmations (50 confirmations), it is not credited to the users of the pool.
It's not me not knowing how a pool works or having a not ultra-fast rig. It's zeus. Should've had a fair bit more than that. I'm not THAT new to this. . .

Could you please elaborate on that?
sr. member
Activity: 280
Merit: 250
Donate to put a smile on my face :)
I have 400khash on my PC and 1.2Mhash on my rig. I don't know how to set up soloing on my rig to mine to my wallet on my PC though. It's on the same LAN but I've tried and I haven't gotten it to work yet.
I got my answer Smiley
Of course, you do realize that you are not credited with the blocks found that are not mature yet, right?
Until a mined block has the required confirmations (50 confirmations), it is not credited to the users of the pool.

I mined on Zeus pool for a few hours and only got 0.4 LGD after confirms...Expected Amount was so Much higher
Expected amount is calculated by the pool's software according to the total hashrate the pool has. It's not accurate all the times and it's only for estimation purposes.
If you want to check whether the payout was fair or not, just go to rounds and check for each block the shares you submitted (percentage and absolute number) and the number of coins you got for that percentage.

You can also check through the blocks page, were you can see the "expected" shares and the actual shares needed to find a block. Luck has everything to do with it
sr. member
Activity: 252
Merit: 250
I have 400khash on my PC and 1.2Mhash on my rig. I don't know how to set up soloing on my rig to mine to my wallet on my PC though. It's on the same LAN but I've tried and I haven't gotten it to work yet.
I got my answer Smiley
Of course, you do realize that you are not credited with the blocks found that are not mature yet, right?
Until a mined block has the required confirmations (50 confirmations), it is not credited to the users of the pool.
It's not me not knowing how a pool works or having a not ultra-fast rig. It's zeus. Should've had a fair bit more than that. I'm not THAT new to this. . .
Pages:
Jump to: