mirror of
https://github.com/FlipsideCrypto/dcrd.git
synced 2026-02-06 10:56:47 +00:00
This further refines the modules to add the following new modules instead of depending on the entire dcrd module: - github.com/decred/dcrd/dcrjson@v1.0.0 - github.com/decred/dcrd/blockchain@v1.0.0 - github.com/decred/dcrd/blockchain/stake@v1.0.0 - github.com/decred/dcrd/gcs@v1.0.0 - github.com/decred/dcrd/mining@v1.0.0 - github.com/decred/dcrd/mempool@v1.0.0 - github.com/decred/dcrd/peer@v1.0.0 - github.com/decred/dcrd/rpcclient@v1.0.0 Also, it ensures modules that rely on other modules within the repo are provided replacements to the latest repo code to ensure builds against master and continuous integration use the latest code. - github.com/decred/dcrd/addrmgr - github.com/decred/dcrd/blockchain - github.com/decred/dcrd/blockchain/stake - github.com/decred/dcrd/chaincfg - github.com/decred/dcrd/connmgr - github.com/decred/dcrd/database - github.com/decred/dcrd/dcrec/secp256k1 - github.com/decred/dcrd/dcrjson - github.com/decred/dcrd/dcrutil - github.com/decred/dcrd/gcs - github.com/decred/dcrd/hdkeychain - github.com/decred/dcrd/mempool - github.com/decred/dcrd/mining - github.com/decred/dcrd/peer - github.com/decred/dcrd/rpcclient - github.com/decred/dcrd/txscript - github.com/decred/dcrd/wire
22 lines
700 B
Modula-2
22 lines
700 B
Modula-2
module github.com/decred/dcrd/database
|
|
|
|
require (
|
|
github.com/btcsuite/goleveldb v1.0.0
|
|
github.com/decred/dcrd/chaincfg v1.0.1
|
|
github.com/decred/dcrd/chaincfg/chainhash v1.0.1
|
|
github.com/decred/dcrd/dcrutil v1.0.0
|
|
github.com/decred/dcrd/wire v1.0.1
|
|
github.com/decred/slog v1.0.0
|
|
github.com/jessevdk/go-flags v1.4.0
|
|
)
|
|
|
|
replace (
|
|
github.com/decred/dcrd/chaincfg => ../chaincfg
|
|
github.com/decred/dcrd/chaincfg/chainhash => ../chaincfg/chainhash
|
|
github.com/decred/dcrd/dcrec => ../dcrec
|
|
github.com/decred/dcrd/dcrec/edwards => ../dcrec/edwards
|
|
github.com/decred/dcrd/dcrec/secp256k1 => ../dcrec/secp256k1
|
|
github.com/decred/dcrd/dcrutil => ../dcrutil
|
|
github.com/decred/dcrd/wire => ../wire
|
|
)
|