diff options
| author | practicalswift <[email protected]> | 2017-06-09 01:18:42 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2017-06-09 15:21:28 +0200 |
| commit | dce82397c1540769a8b39a9a475c366cb9438469 (patch) | |
| tree | a51b14447f6d812da1b656cfb1239e71e015c41c /src | |
| parent | Remove unused constant MEMPOOL_GD_VERSION (diff) | |
| download | discoin-dce82397c1540769a8b39a9a475c366cb9438469.tar.xz discoin-dce82397c1540769a8b39a9a475c366cb9438469.zip | |
Comment out unused constant REJECT_DUST
Diffstat (limited to 'src')
| -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 5a7d7f11a..8fc3ef1b6 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; |