From 3289ef4fe1f870a07db3d1b91a0d8fd3ec251cb6 Mon Sep 17 00:00:00 2001 From: practicalswift Date: Fri, 9 Jun 2017 01:17:59 +0200 Subject: Remove unused constant MEMPOOL_GD_VERSION --- src/version.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/version.h b/src/version.h index 0f69b2f02b..d528212490 100644 --- a/src/version.h +++ b/src/version.h @@ -27,9 +27,6 @@ static const int CADDR_TIME_VERSION = 31402; //! BIP 0031, pong message, is enabled for all versions AFTER this one static const int BIP0031_VERSION = 60000; -//! "mempool" command, enhanced "getdata" behavior starts with this version -static const int MEMPOOL_GD_VERSION = 60002; - //! "filter*" commands are disabled without NODE_BLOOM after and including this version static const int NO_BLOOM_VERSION = 70011; -- cgit v1.2.3 From dce82397c1540769a8b39a9a475c366cb9438469 Mon Sep 17 00:00:00 2001 From: practicalswift Date: Fri, 9 Jun 2017 01:18:42 +0200 Subject: Comment out unused constant REJECT_DUST --- src/consensus/validation.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/consensus/validation.h b/src/consensus/validation.h index 5a7d7f11a9..8fc3ef1b66 100644 --- a/src/consensus/validation.h +++ b/src/consensus/validation.h @@ -14,7 +14,7 @@ static const unsigned char REJECT_INVALID = 0x10; static const unsigned char REJECT_OBSOLETE = 0x11; static const unsigned char REJECT_DUPLICATE = 0x12; static const unsigned char REJECT_NONSTANDARD = 0x40; -static const unsigned char REJECT_DUST = 0x41; +// static const unsigned char REJECT_DUST = 0x41; // part of BIP 61 static const unsigned char REJECT_INSUFFICIENTFEE = 0x42; static const unsigned char REJECT_CHECKPOINT = 0x43; -- cgit v1.2.3