Larry Ruane
Larry Ruane
@pacu - what you suggest is probably the best way. I think the interface to this darkside test-only gRPC would be a list of ("hex", integer) pairs (32-byte hex string...
We could certainly improve the error message! I can make a PR.
This area is messy right now. What I think happened is that `zcashd` died while `lightwalletd` had a `getbestblockhash` rpc outstanding. (It calls that rpc every 2 seconds in normal...
Update: there's a better way, which is to use `verificationprogress` field of the zcashd `getblockchaininfo` rpc response. It's a floating-point value between 0 and 1 and gives the approximate fraction...
Things have changed since this issue was written, but most of the above probably still applies. There's at least one additional problem: `lightwalletd` was not running but had recently been...
Fixed by dc02b11f62b14783a24baf7c88ed860b728307c3
I think this question - answer provides the needed information on how to do this: https://stackoverflow.com/questions/13530120/how-can-i-generate-html-documents-using-godoc
I now disagree with my own comment above. If `zcashd` restarts, the new instance may be running a different configuration, and `lightwalletd` may have cached this configuration, making it now...
Logging can also be more consistent. Currently, there are (I think) two forms of logging calls (or maybe these are the most common); an example of the simpler way: ```...
It would be nice to enable selective logging by category, rather than just level (an integer). This is how `zcashd` logging is done, see the `--debug` command-line argument. It may...