From 48ebf73da8e12dd096ed4474107543d2ed32e5f4 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Fri, 24 Apr 2015 12:58:20 -0700 Subject: [PATCH] Loosen the AllowFree threshold significantly --- src/txmempool.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/txmempool.h b/src/txmempool.h index f671352b58..a68ac9788e 100644 --- a/src/txmempool.h +++ b/src/txmempool.h @@ -17,7 +17,7 @@ class CAutoFile; inline double AllowFreeThreshold() { - return COIN * 144 / 250; + return COIN / 100 * 144 / 250; } inline bool AllowFree(double dPriority)