This updates the database module to use v2 of the chaincfg module and bumps the root module to require dcrutil@v1.3.0 accordingly. Since v2 of the chaincfg module is only used in the tests and standalone utility, a major version bump of the database module is not required.
15 lines
378 B
Modula-2
15 lines
378 B
Modula-2
module github.com/decred/dcrd/database
|
|
|
|
go 1.11
|
|
|
|
require (
|
|
github.com/btcsuite/goleveldb v1.0.0
|
|
github.com/decred/dcrd/chaincfg/chainhash v1.0.1
|
|
github.com/decred/dcrd/chaincfg/v2 v2.0.2
|
|
github.com/decred/dcrd/dcrutil v1.3.0
|
|
github.com/decred/dcrd/wire v1.2.0
|
|
github.com/decred/slog v1.0.0
|
|
github.com/jessevdk/go-flags v1.4.0
|
|
github.com/onsi/gomega v1.4.3 // indirect
|
|
)
|