From ea68b3a5729f5d240e968388c4f88acffeb27228 Mon Sep 17 00:00:00 2001 From: Anthony Towns Date: Thu, 11 Mar 2021 12:17:22 +1000 Subject: [move-only] Rename versionbitsinfo to deploymentinfo --- src/deploymentinfo.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/deploymentinfo.h (limited to 'src/deploymentinfo.h') diff --git a/src/deploymentinfo.h b/src/deploymentinfo.h new file mode 100644 index 0000000000..4c68856eac --- /dev/null +++ b/src/deploymentinfo.h @@ -0,0 +1,17 @@ +// Copyright (c) 2016-2018 The Bitcoin Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + +#ifndef BITCOIN_DEPLOYMENTINFO_H +#define BITCOIN_DEPLOYMENTINFO_H + +struct VBDeploymentInfo { + /** Deployment name */ + const char *name; + /** Whether GBT clients can safely ignore this rule in simplified usage */ + bool gbt_force; +}; + +extern const struct VBDeploymentInfo VersionBitsDeploymentInfo[]; + +#endif // BITCOIN_DEPLOYMENTINFO_H -- cgit v1.2.3