diff options
author | Neha Narula <narula@gmail.com> | 2019-11-19 13:07:55 -0500 |
---|---|---|
committer | Neha Narula <narula@gmail.com> | 2019-11-20 19:06:52 -0500 |
commit | e9a27cf338dc618b8ecab8984abc54d588de8a05 (patch) | |
tree | df10553c903f1db7de9dff1c88f86e59e383fe19 /src/validation.h | |
parent | b4a1da9ef8e4b673c290d5b882527e627ae1b43a (diff) |
refactor: Remove unused COINBASE_FLAGS
Commit d449772cf69c01932fc5d72c46054815d6300b3c stopped setting
COINBASE_FLAGS, and it looks like it hasn't been used since P2SH.
Update the help string to remove "flags", which is not specified in
BIP 22.
Diffstat (limited to 'src/validation.h')
-rw-r--r-- | src/validation.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/validation.h b/src/validation.h index 31721cfbf7..d87113c41f 100644 --- a/src/validation.h +++ b/src/validation.h @@ -137,7 +137,6 @@ struct BlockHasher size_t operator()(const uint256& hash) const { return ReadLE64(hash.begin()); } }; -extern CScript COINBASE_FLAGS; extern CCriticalSection cs_main; extern CBlockPolicyEstimator feeEstimator; extern CTxMemPool mempool; |