Godaddy is having issues right now but I think it should be up by tomorrow hopefully. I'll try to get it the process started tonight though since i have the domain and server already bought. I'll let you know when it's ready with the link
I just downloaded the Sprouts wallet source code to get an understanding of it. Let me see if I can fix the 1 billion error and increase it to, like, 40 billion. Also I will change it to be Sprouts Classic to be unique and independent from the failed HF wallet.
The 2 billion error may be an easy fix, but the problems come in when you try to re-compile since a lot of the libraries are old, and there is a bit of hacking to get them to match up to the old sprouts code.
If you go to "main.h" the lines to change to fix this are there, and they look like this:
/** No amount larger than this (in satoshi) is valid */
static const int64 MAX_MONEY = 2000000000 * COIN;
static const int64 MAX_MONEY_2 = 40000000000 * COIN;
The old line that sets the max to 2 billion is the the MAX_MONEY is what is causing the errors.
The second line fixes it to 40 billion. Of course, anywhere in the code that says "MAX_MONEY" will need to be replaced with "MAX_MONEY_2".
I stripped this from the sproutsHF's code. This is their fix, maybe an easier, but riskier fix, would be to simply change the value of MAX_MONEY to 40 billion. The effects of fixing it this way would be unknown.
