From 5f3680bba2491ecb883bbb7de90f4d43dce93824 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Sat, 5 Mar 2016 21:30:45 -0800 Subject: [PATCH] Hugely reduce the minimum priority --- src/txmempool.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/txmempool.h b/src/txmempool.h index 3d204aa41d..ae939aa4c0 100644 --- a/src/txmempool.h +++ b/src/txmempool.h @@ -32,7 +32,7 @@ class CBlockIndex; inline double AllowFreeThreshold() { - return COIN * 144 / 250; + return CENT * 1 / 250; } inline bool AllowFree(double dPriority)