From 42469eb0c181b886d3b221cf8ab5c876916d9bce Mon Sep 17 00:00:00 2001 From: Josh Rickmar Date: Wed, 12 Dec 2018 19:12:08 +0000 Subject: [PATCH] mempool: Fix required version of mining module --- mempool/go.mod | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mempool/go.mod b/mempool/go.mod index 9543c80ea6..39cbf8cdb9 100644 --- a/mempool/go.mod +++ b/mempool/go.mod @@ -2,15 +2,15 @@ module github.com/decred/dcrd/mempool require ( github.com/decred/dcrd/blockchain v1.0.1 - github.com/decred/dcrd/blockchain/stake v1.0.1 + github.com/decred/dcrd/blockchain/stake v1.1.0 github.com/decred/dcrd/chaincfg v1.2.0 github.com/decred/dcrd/chaincfg/chainhash v1.0.1 github.com/decred/dcrd/dcrec v0.0.0-20180801202239-0761de129164 github.com/decred/dcrd/dcrec/secp256k1 v1.0.1 github.com/decred/dcrd/dcrjson v1.0.0 - github.com/decred/dcrd/dcrutil v1.1.1 - github.com/decred/dcrd/mining v1.0.0 - github.com/decred/dcrd/txscript v1.0.1 + github.com/decred/dcrd/dcrutil v1.2.0 + github.com/decred/dcrd/mining v1.1.0 + github.com/decred/dcrd/txscript v1.0.2 github.com/decred/dcrd/wire v1.2.0 github.com/decred/slog v1.0.0 )