diff options
| author | Wladimir J. van der Laan <[email protected]> | 2013-08-28 12:17:17 -0700 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2013-08-28 12:17:17 -0700 |
| commit | ff33a3470dd1d1446549d02609c991c0490e0fdf (patch) | |
| tree | b65b997a125bdabe4ea94ba650515eb67ddd5fe2 /src/qt/bitcoin.cpp | |
| parent | Merge pull request #2904 from gmaxwell/newaddr-no-passphrase (diff) | |
| parent | Bitcoin-Qt: add testnet check and icon to intro dialog (diff) | |
| download | discoin-ff33a3470dd1d1446549d02609c991c0490e0fdf.tar.xz discoin-ff33a3470dd1d1446549d02609c991c0490e0fdf.zip | |
Merge pull request #2931 from Diapolo/intro
Bitcoin-Qt: add testnet check and icon to intro dialog
Diffstat (limited to 'src/qt/bitcoin.cpp')
| -rw-r--r-- | src/qt/bitcoin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index e7cf44004..9c290fa71 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -232,7 +232,7 @@ int main(int argc, char *argv[]) PaymentServer* paymentServer = new PaymentServer(&app); // User language is set up: pick a data directory - Intro::pickDataDirectory(); + Intro::pickDataDirectory(TestNet()); // Install global event filter that makes sure that long tooltips can be word-wrapped app.installEventFilter(new GUIUtil::ToolTipToRichTextFilter(TOOLTIP_WRAP_THRESHOLD, &app)); |