Josh Rickmar

Results 198 comments of Josh Rickmar

We've addressed this in #2192. Give latest master another try, and use the hex seed instead of the seed words. That extra blank line needed after the seed prompt is...

I'm not totally sure what this is doing but I don't think this is creating images containing our official release binaries? It doesn't make sense to me that we go...

the signatures are manually generated, but are uploaded to a github draft release prior to publishing. by the time that release/tag is created, the sigs can be used. the best...

@wader @slingamn that fork works correctly already.

it already performs ioctls through a recent enough version of golang.org/x/sys/unix

This is also fixed by building with the `safe` build tag. Appears to be a memory unsafety issue introduced by spew making some assumptions about the newer Go release.

Might want to report this to the gRPC developers so the protoc plugin can produce better output. It should be implementing [GoStringer](https://godoc.org/fmt#GoStringer) for a string representation of the Go syntax,...

There is nothing stopping the use of pre-module go packages in a larger module build. It would be a good thing to add go.mod/sum files to spew, but it is...

Spew requires `unsafe` (for all features, a safe version can be compiled with `-tags safe`) and memory/type safety is not guaranteed in all future Go releases. An upgrade to Go...

just opened decred/dcrwallet#2305 which adds the result to getinfo. But also now I'm seeing that a similar field was already added to walletinfo, so I'm not sure if this is...