zcashd/src/experimental_features.h

17 lines
583 B
C
Raw Normal View History

2020-01-27 06:59:24 -08:00
// Copyright (c) 2020 The Zcash developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or https://www.opensource.org/licenses/mit-license.php .
#include <string>
#include <vector>
#include <boost/optional.hpp>
extern bool fExperimentalDeveloperEncryptWallet;
extern bool fExperimentalDeveloperSetPoolSizeZero;
extern bool fExperimentalPaymentDisclosure;
extern bool fExperimentalInsightExplorer;
2020-03-13 04:13:33 -07:00
extern bool fExperimentalLightWalletd;
2020-01-27 06:59:24 -08:00
boost::optional<std::string> InitExperimentalMode();
std::vector<std::string> GetExperimentalFeatures();