diff options
Diffstat (limited to 'src/consensus')
-rw-r--r-- | src/consensus/params.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/consensus/params.h b/src/consensus/params.h index 6240e82857..9d60c2413a 100644 --- a/src/consensus/params.h +++ b/src/consensus/params.h @@ -7,6 +7,7 @@ #define BITCOIN_CONSENSUS_PARAMS_H #include "uint256.h" +#include <limits> #include <map> #include <string> @@ -31,6 +32,9 @@ struct BIP9Deployment { int64_t nStartTime; /** Timeout/expiry MedianTime for the deployment attempt. */ int64_t nTimeout; + + /** Constant for nTimeout very far in the future. */ + static constexpr int64_t NO_TIMEOUT = std::numeric_limits<int64_t>::max(); }; /** |