dcrd
dcrd copied to clipboard
Decred daemon in Go (golang).
This makes most of the tests that take a while to run parallel to significantly reduce the overall testing time roughly in half. Note that this does cause the output...
Now that the address index has been removed, there are no longer any indexers that require access to previous scripts. Therefore, this removes all of the code related to taking...
Signed-off-by: AdamKorcz This PR adds [ClusterfuzzLite](https://google.github.io/clusterfuzzlite/) and a simple fuzzer. ClusterfuzzLite will run fuzzers in the CI when PRs are made. It can be extended beyond this PR with code...
``` 2022-05-10 15:28:05.662 [INF] CHAN: Updated 14446 entries (794446 total) 2022-05-10 15:28:05.662 [INF] CHAN: Done updating block index. Total entries: 794446 in 14.095s 2022-05-10 15:28:05.662 [INF] CHAN: Done upgrading database...
This PR modifies the wire protocol by adding a new message type `addrv2`, bumps to the wire protocol version 13 (`TORv3Version`), and adds support for sharing and connecting to V3...
After upgrading to 1.7.2+release. dcrwallet cannot provide services normally, and the rpc call always return ```json { "jsonrpc": "2.0", "result": null, "error": { "code": -4, "message": "write tcp 127.0.0.1:43464->127.0.0.1:9109: write:...
This documents the process expected to be followed by contributors in versioning JSON-RPC API endpoints. work towards #2746.
This issue is intended to act as a running high-level outline and provide motivation for overall planned long-term refactors and implementation of a `primitives` module as time permits. Currently, the...
Currently, the JSON-RPC server is versioned via semver and exposed via the [`version`](https://github.com/decred/dcrd/blob/master/docs/json_rpc_api.mediawiki#version) JSON-RPC method. While this approach works in terms of allowing callers to detect changes, it often leads...
This updates the wire error types to leverage go 1.13 errors.Is/As functionality as well as confirm to the error infrastructure best practices outlined in #2181.