mirror of
https://github.com/FlipsideCrypto/dcrd.git
synced 2026-02-06 10:56:47 +00:00
This removes the getblocktemplate and its helpers from the codebase. Ongoing mining updates focused on the voting/block validation process with respect to generating block templates for getwork makes it the better option for decred. Also getblocktemplate rpc was buggy and has been disabled for a while. Some lint related issues have been addressed as well.
25 lines
790 B
Modula-2
25 lines
790 B
Modula-2
module github.com/decred/dcrd/rpcclient/v5
|
|
|
|
go 1.11
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1
|
|
github.com/decred/dcrd/chaincfg/chainhash v1.0.1
|
|
github.com/decred/dcrd/dcrjson/v3 v3.0.0
|
|
github.com/decred/dcrd/dcrutil/v2 v2.0.0
|
|
github.com/decred/dcrd/gcs/v2 v2.0.0-00010101000000-000000000000
|
|
github.com/decred/dcrd/hdkeychain/v2 v2.0.1
|
|
github.com/decred/dcrd/rpc/jsonrpc/types v1.0.0
|
|
github.com/decred/dcrd/rpc/jsonrpc/types/v2 v2.0.0-00010101000000-000000000000
|
|
github.com/decred/dcrd/wire v1.2.0
|
|
github.com/decred/dcrwallet/rpc/jsonrpc/types v1.1.0
|
|
github.com/decred/go-socks v1.0.0
|
|
github.com/decred/slog v1.0.0
|
|
github.com/gorilla/websocket v1.4.0
|
|
)
|
|
|
|
replace (
|
|
github.com/decred/dcrd/gcs/v2 => ../gcs
|
|
github.com/decred/dcrd/rpc/jsonrpc/types/v2 => ../rpc/jsonrpc/types
|
|
)
|