diff options
author | Anthony Towns <aj@erisian.com.au> | 2023-07-15 21:46:19 +1000 |
---|---|---|
committer | Anthony Towns <aj@erisian.com.au> | 2023-08-03 13:42:46 +1000 |
commit | a70beafdb22564043dc24fc98133fdadbaf77d8a (patch) | |
tree | 787f763689d64aa42b21468671f0c0165552e062 /src/validation.h | |
parent | 1e9684f39fba909b3501e9402d5b61f4bf744ff2 (diff) |
validation: when adding txs due to a block reorg, allow immediate relay
Diffstat (limited to 'src/validation.h')
-rw-r--r-- | src/validation.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/validation.h b/src/validation.h index 8bc8842c54..e8d5448442 100644 --- a/src/validation.h +++ b/src/validation.h @@ -239,7 +239,8 @@ struct PackageMempoolAcceptResult * @param[in] tx The transaction to submit for mempool acceptance. * @param[in] accept_time The timestamp for adding the transaction to the mempool. * It is also used to determine when the entry expires. - * @param[in] bypass_limits When true, don't enforce mempool fee and capacity limits. + * @param[in] bypass_limits When true, don't enforce mempool fee and capacity limits, + * and set entry_sequence to zero. * @param[in] test_accept When true, run validation checks but don't submit to mempool. * * @returns a MempoolAcceptResult indicating whether the transaction was accepted/rejected with reason. |