aboutsummaryrefslogtreecommitdiff
path: root/src/chainparams.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2015-03-09 16:04:43 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2015-03-09 16:06:14 +0100
commit59bd89f11636e90b2d684e8f411d8d7a88622458 (patch)
tree8c01545831dd3ba1701f584adacfbc2a6b992a9b /src/chainparams.h
parent8cbe1f4f5870a165be729cabb9b55dcbf0f85e09 (diff)
downloadbitcoin-59bd89f11636e90b2d684e8f411d8d7a88622458.tar.xz
test: Remove UNITTEST params
UNITTEST parameter are not used by any current tests, and the model (modifyable parameters) is inconvenient when unit-testing. As they are stored in a global structure eevery test would have to (re)set up its own parameters. For consistency it is also better to test with MAIN parameters.
Diffstat (limited to 'src/chainparams.h')
-rw-r--r--src/chainparams.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/chainparams.h b/src/chainparams.h
index 78b575d8f3..48b1383a67 100644
--- a/src/chainparams.h
+++ b/src/chainparams.h
@@ -108,25 +108,6 @@ protected:
bool fTestnetToBeDeprecatedFieldRPC;
};
-/**
- * Modifiable parameters interface is used by test cases to adapt the parameters in order
- * to test specific features more easily. Test cases should always restore the previous
- * values after finalization.
- */
-
-class CModifiableParams {
-public:
- //! Published setters to allow changing values in unit test cases
- virtual void setSubsidyHalvingInterval(int anSubsidyHalvingInterval) =0;
- virtual void setEnforceBlockUpgradeMajority(int anEnforceBlockUpgradeMajority)=0;
- virtual void setRejectBlockOutdatedMajority(int anRejectBlockOutdatedMajority)=0;
- virtual void setToCheckBlockUpgradeMajority(int anToCheckBlockUpgradeMajority)=0;
- virtual void setDefaultCheckMemPool(bool aDefaultCheckMemPool)=0;
- virtual void setAllowMinDifficultyBlocks(bool aAllowMinDifficultyBlocks)=0;
- virtual void setSkipProofOfWorkCheck(bool aSkipProofOfWorkCheck)=0;
-};
-
-
/**
* Return the currently selected parameters. This won't change after app startup
* outside of the unit tests.
@@ -136,9 +117,6 @@ const CChainParams &Params();
/** Return parameters for the given network. */
CChainParams &Params(CBaseChainParams::Network network);
-/** Get modifiable network parameters (UNITTEST only) */
-CModifiableParams *ModifiableParams();
-
/** Sets the params returned by Params() to those for the given network. */
void SelectParams(CBaseChainParams::Network network);