diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2017-06-09 01:18:42 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2017-06-09 15:21:28 +0200 |
commit | dce82397c1540769a8b39a9a475c366cb9438469 (patch) | |
tree | a51b14447f6d812da1b656cfb1239e71e015c41c /src/consensus | |
parent | 3289ef4fe1f870a07db3d1b91a0d8fd3ec251cb6 (diff) |
Comment out unused constant REJECT_DUST
Diffstat (limited to 'src/consensus')
-rw-r--r-- | src/consensus/validation.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; |