aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2015-12-01 12:38:55 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2015-12-01 12:39:34 +0100
commit9afbd96919afd1f773e4c2633b0cfd6068e2b228 (patch)
tree13792e87a1e38723aba442346ba0d4de6ec6e6d4 /src
parent6abf6eb7bb777a5c4f22e9db6d4544281277378f (diff)
parent50947ef23f46428ed8a260e3d4ff5ac0402ed727 (diff)
downloadbitcoin-9afbd96919afd1f773e4c2633b0cfd6068e2b228.tar.xz
Merge pull request #7022
50947ef Change default block priority size to 0 (Alex Morcos)
Diffstat (limited to 'src')
-rw-r--r--src/policy/policy.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/policy/policy.h b/src/policy/policy.h
index c8d2c1a924..31655f2f3a 100644
--- a/src/policy/policy.h
+++ b/src/policy/policy.h
@@ -18,7 +18,7 @@ class CCoinsViewCache;
static const unsigned int DEFAULT_BLOCK_MAX_SIZE = 750000;
static const unsigned int DEFAULT_BLOCK_MIN_SIZE = 0;
/** Default for -blockprioritysize, maximum space for zero/low-fee transactions **/
-static const unsigned int DEFAULT_BLOCK_PRIORITY_SIZE = 50000;
+static const unsigned int DEFAULT_BLOCK_PRIORITY_SIZE = 0;
/** The maximum size for transactions we're willing to relay/mine */
static const unsigned int MAX_STANDARD_TX_SIZE = 100000;
/** Maximum number of signature check operations in an IsStandard() P2SH script */