Activate CSV from genesis block for custom chains

This commit is contained in:
Gregory Sanders 2019-02-14 08:27:19 -05:00
parent fd9bdc6d55
commit b8820d1836
5 changed files with 17 additions and 4 deletions

View file

@ -42,6 +42,7 @@ void SetupChainParamsBaseOptions()
gArgs.AddArg("-enforce_pak", "Causes standardness checks to enforce Pegout Authorization Key(PAK) validation, and miner to include PAK commitments when configured. Can not be set when acceptnonstdtx is set to true.", false, OptionsCategory::ELEMENTS);
gArgs.AddArg("-multi_data_permitted", "Allow relay of multiple OP_RETURN outputs. (default: true)", false, OptionsCategory::ELEMENTS);
gArgs.AddArg("-pak", "Entries in the PAK list. Order of entries matter.", false, OptionsCategory::ELEMENTS);
gArgs.AddArg("-con_csv_deploy_start", "Starting height for CSV deployment. (default: -1, which means ACTIVE from genesis)", false, OptionsCategory::ELEMENTS);
}
static std::unique_ptr<CBaseChainParams> globalChainBaseParams;