2018-06-16 22:33:42 +02:00
|
|
|
// 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.
|
|
|
|
|
2021-03-11 12:17:22 +10:00
|
|
|
#ifndef BITCOIN_DEPLOYMENTINFO_H
|
|
|
|
#define BITCOIN_DEPLOYMENTINFO_H
|
2018-06-16 22:33:42 +02:00
|
|
|
|
|
|
|
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[];
|
|
|
|
|
2021-03-11 12:17:22 +10:00
|
|
|
#endif // BITCOIN_DEPLOYMENTINFO_H
|