Remove Env::disable_testing() stub

This commit is contained in:
Scott Schurr
2016-03-18 12:15:05 -07:00
committed by seelabs
parent 095f85f159
commit c9f1966e08
2 changed files with 0 additions and 10 deletions

View File

@@ -196,9 +196,7 @@ public:
env.fund(XRP(1000), alice);
env.close();
// Make sure multisign is disabled in production.
// NOTE: These six tests will fail when multisign is default enabled.
env.disable_testing();
env(signers(alice, 1, {{bogie, 1}}), ter(temDISABLED));
env.close();
env.require (owners (alice, 0));

View File

@@ -289,13 +289,6 @@ public:
trace_ = 0;
}
/** Turn off testing. */
void
disable_testing()
{
testing_ = false;
}
/** Turn off signature checks. */
void
disable_sigs()
@@ -540,7 +533,6 @@ public:
protected:
int trace_ = 0;
bool testing_ = true;
TestStopwatch stopwatch_;
uint256 txid_;
TER ter_ = tesSUCCESS;