From eae2ad41dd607e72de37a5c790d4bf1affe0c928 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Thu, 14 Feb 2019 14:37:57 -0600 Subject: [PATCH] mempool: Remove deprecated min high prio constant. This removes the deprecated MinHighPriority constant as part of moving to mempool/v2. Note that since this constitutes a major break to the API, the mepool module version will need to be bumped to version 2. --- mempool/mempool.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/mempool/mempool.go b/mempool/mempool.go index abfe2eae..65ee62d6 100644 --- a/mempool/mempool.go +++ b/mempool/mempool.go @@ -32,13 +32,6 @@ const ( // inclusion when generating block templates. DefaultBlockPrioritySize = 20000 - // MinHighPriority is the minimum priority value that allows a - // transaction to be considered high priority. - // - // Deprecated: Use mining.MinHighPriority - // TODO: Remove in next version update. - MinHighPriority = mining.MinHighPriority - // maxRelayFeeMultiplier is the factor that we disallow fees / kB above the // minimum tx fee. At the current default minimum relay fee of 0.0001 // DCR/kB, this results in a maximum allowed high fee of 1 DCR/kB.