Before activation, such transactions might not be reliably mined, so don’t allow into the mempool.
Please tag for backport to 0.12.1
Before activation, such transactions might not be reliably mined, so don’t allow into the mempool.
Please tag for backport to 0.12.1
Before activation, such transactions might not be mined, so don't
allow into the mempool.
1024@@ -1025,6 +1025,14 @@ bool AcceptToMemoryPoolWorker(CTxMemPool& pool, CValidationState& state, const C
1025 if (fRequireStandard && !IsStandardTx(tx, reason))
1026 return state.DoS(0, false, REJECT_NONSTANDARD, reason);
1027
1028+ // Don't relay version 2 transactions until CSV is active, and we can be
1029+ // sure that such transactions will be mined (unless we're on
1030+ // -testnet/-regtest).
1031+ const CChainParams& chainparams = Params();