aboutsummaryrefslogtreecommitdiff
path: root/src/validation.h
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2017-06-01 11:12:59 -0700
committerPieter Wuille <pieter.wuille@gmail.com>2017-06-02 00:18:47 -0700
commitd9bec888f1c82f1f58cc821cac81da9c571b5fa5 (patch)
tree1d2d2ed40e6bd95391c1a308f5d7387723790de8 /src/validation.h
parent7cc2c670e3d7cf26454ac8547a94ec2c8ca90b34 (diff)
downloadbitcoin-d9bec888f1c82f1f58cc821cac81da9c571b5fa5.tar.xz
Use REJECT_DUPLICATE for already known and conflicted txn
Diffstat (limited to 'src/validation.h')
-rw-r--r--src/validation.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/validation.h b/src/validation.h
index 096fd0a9ee..5e25e50048 100644
--- a/src/validation.h
+++ b/src/validation.h
@@ -509,10 +509,6 @@ int32_t ComputeBlockVersion(const CBlockIndex* pindexPrev, const Consensus::Para
static const unsigned int REJECT_INTERNAL = 0x100;
/** Too high fee. Can not be triggered by P2P transactions */
static const unsigned int REJECT_HIGHFEE = 0x100;
-/** Transaction is already known (either in mempool or blockchain) */
-static const unsigned int REJECT_ALREADY_KNOWN = 0x101;
-/** Transaction conflicts with a transaction already known */
-static const unsigned int REJECT_CONFLICT = 0x102;
/** Get block file info entry for one block file */
CBlockFileInfo* GetBlockFileInfo(size_t n);