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.
This commit is contained in:
Dave Collins 2019-02-14 14:37:57 -06:00
parent 78d83767f9
commit eae2ad41dd
No known key found for this signature in database
GPG Key ID: B8904D9D9C93D1F2

View File

@ -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.