simplecrypto / simplecoin_multi

A multipool capable cryptocurrency mining frontend implementation for powerpool
MIT License
30 stars 43 forks source link

Can't generate valid signature verification #190

Closed mkminer closed 9 years ago

mkminer commented 9 years ago

I have tried this several times and different ways. I current have a 1 coin site and I cannot generation a valid signature so I can utilize the auto-payout process. Every time I go through the process when I submit the signature and update settings, it comes back with "not a valid signature". Not quite sure how to debug this. If I verify the signature in the wallet, it says it's fine.

Thoughts?

Thanks, MK Miner

ericecook commented 9 years ago

If it is getting rejected you can look at the error in the webserver log. IIRC all attempts are logged atm, whether successful or not.

To nail down the exact problem you can look at the possible outputs at the bottom of utils.py. Some of them are piped straight from the coinserver

mkminer commented 9 years ago

Thanks, Eric.

The problem (and it may be a bug) was that the "site_title" was not matching signature. The site_title was "MK Mining" and the signature verification was seeing "MK", so it's not handling the "space". I replaced the title with "MK-Mining" and it seems to make it further.

Thanks again,

MK Miner

Mark Spehalski markspehalski@gmail.com 503-484-3539

On Thu, Feb 5, 2015 at 10:39 PM, Eric Cook notifications@github.com wrote:

If it is getting rejected you can look at the error in the webserver log. IIRC all attempts are logged atm, whether successful or not.

To nail down the exact problem you can look at the possible outputs at the bottom of utils.py. Some of them are piped straight from the coinserver

— Reply to this email directly or view it on GitHub https://github.com/simplecrypto/simplecoin_multi/issues/190#issuecomment-73189517 .

ericecook commented 9 years ago

Great, glad you got it figured out. I'll add a note about spaces in the site_title