gz-c
gz-c
When message was empty, terminal-formatted output will include an extra space e.g. ``` INFO foo=bar ``` This changes the formatting to e.g. ``` INFO foo=bar ```
Fixes #625 Race conditions were triggered when Sprintf-ing certain objects when preparing a diff for mock failures. This restores the order of sprintf(obj) calls to the order it was prior...
GoImports on save will not add imports that are in `vendor/` but not in `$GOPATH`. Running `goimports` from the terminal does not have this problem.
There is no way to pass argument to the goimports linter. Previously this could be done with something like: ``` "fmt_cmd": ["goimports", "-srcdir", "$_dir", "-local", "github.com/gz-c/foo"], ``` Now it seems...
For example, Swaplab doesn't work in every region. When a user is in a blocked region, it shows the generic "unable to connect to the service" message. This happened to...
For a request to `POST /api/v1/wallet/transaction`, there has been two isolated, reported problems: * Extremely slow (minutes) [replicable] * OOM error, crash [not replicable, unknown if attempted proper replication] WIthout...
The node can fail to start for various reasons, it would be best to display the reason in the electron client instead of a generic "Error#1" message. One possibility is...
To replicate, run the client and ctrl+c to quit during "Load blockchain..." gnet/pool will panic with a nil `*Connection` This is because of `strand("NewConnection",`, `pool.NewConnection` may return `nil, nil` unexpectedly...
CTRL+C while in `ExecuteSignedBlock` prevents clean shutdown and requires an extra CTRL+C ``` [skycoin.daemon:CRITICAL] Added new block 1353 ^C[skycoin.main:INFO] Shutting down... [skycoin.pex:INFO] Shutting down pex [skycoin.pex:INFO] Save peerlist [skycoin.main:INFO] Logbuff...
Using a self-signed cert to enable https on the localhost web interface may protect against malicious packet sniffing on the localhost network. Before this didn't matter because you need root...