diff options
| author | SergioDemianLerner <[email protected]> | 2014-09-04 16:23:42 -0300 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-09-29 13:03:22 +0200 |
| commit | a25fd6be138ff2bff7e2ad6a1a789db523c0193f (patch) | |
| tree | 331eae7469995c3a8318df70f1654c7116fd1bd4 /src/test/test_bitcoin.cpp | |
| parent | Merge pull request #4970 (diff) | |
| download | discoin-a25fd6be138ff2bff7e2ad6a1a789db523c0193f.tar.xz discoin-a25fd6be138ff2bff7e2ad6a1a789db523c0193f.zip | |
Switch testing framework from MAIN to new UNITTEST network
UNITTEST inherites from MAIN but allows synamically changing its parameters using the ModifiableParams() interface
Diffstat (limited to 'src/test/test_bitcoin.cpp')
| -rw-r--r-- | src/test/test_bitcoin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test_bitcoin.cpp b/src/test/test_bitcoin.cpp index 68fad8d03..6e5f0e3fa 100644 --- a/src/test/test_bitcoin.cpp +++ b/src/test/test_bitcoin.cpp @@ -31,7 +31,7 @@ struct TestingSetup { TestingSetup() { fPrintToDebugLog = false; // don't want to write to debug.log file - SelectParams(CBaseChainParams::MAIN); + SelectParams(CBaseChainParams::UNITTEST); noui_connect(); #ifdef ENABLE_WALLET bitdb.MakeMock(); |