diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-06-19 15:10:04 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-06-25 10:31:35 +0200 |
| commit | 84ce18ca9339901f65d77a5821eb65f771316558 (patch) | |
| tree | 61012d3d9743d5ce8d0e9510c36f60856752c883 /src/qt/test/paymentservertests.cpp | |
| parent | Move network-time related functions to timedata.cpp/h (diff) | |
| download | discoin-84ce18ca9339901f65d77a5821eb65f771316558.tar.xz discoin-84ce18ca9339901f65d77a5821eb65f771316558.zip | |
Remove unnecessary dependencies for bitcoin-cli
This commit removes all the unnecessary dependencies (key, core,
netbase, sync, ...) from bitcoin-cli.
To do this it shards the chain parameters into BaseParams, which
contains just the RPC port and data directory (as used by utils and
bitcoin-cli) and Params, with the rest.
Diffstat (limited to 'src/qt/test/paymentservertests.cpp')
| -rw-r--r-- | src/qt/test/paymentservertests.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qt/test/paymentservertests.cpp b/src/qt/test/paymentservertests.cpp index 7dee7a9cd..e92a7d2b1 100644 --- a/src/qt/test/paymentservertests.cpp +++ b/src/qt/test/paymentservertests.cpp @@ -56,6 +56,7 @@ static SendCoinsRecipient handleRequest(PaymentServer* server, std::vector<unsig void PaymentServerTests::paymentServerTests() { + SelectParams(CBaseChainParams::MAIN); OptionsModel optionsModel; PaymentServer* server = new PaymentServer(NULL, false); X509_STORE* caStore = X509_STORE_new(); |