Dave Collins
Dave Collins
At the very least, it needs a rebase since it doesn't have the latest changes needed by btcrpcclient.
Why not just put it as the last thing in the function before the return like it does in btcd? https://github.com/btcsuite/btcd/blob/master/config.go#L873-L881 The logger is initialized by that point and, as...
No I understand that, but what I'm getting at is there is no reason for it to need to do that and it's actually not desirable as I will explain...
Shouldn't this be accompanied by a version bump? It doesn't need to happen on every single open.
This package makes use of assembler that is specific to the native go gc compiler. As a result, it can't be compiled under gccgo as is. EDIT: It should be...
Since the format of existing addresses in the db is being changed here, the db version needs to be bumped and it needs upgrade code to handle the new serialization....
This is no longer relevant since `rpctest` has been split into its own [dcrtest](https://github.com/decred/dcrtest) repo.
I considered this during initial development, but the main issue is that there are several cases where there is no clear Go syntax to recreate a given data structure. For...
Nice find! I'll take at a look at the proposed fix and get this updated accordingly. Fixing this should also fix #44.
I suspect that interface pointers in general will need to be saved since it could really happen with any compound data structure that contains an interface due to them really...