diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-02-12 05:52:34 -0800 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-02-12 05:52:34 -0800 |
| commit | 15b87b2ec40bdcbc7e8173c79b829fc0f550909e (patch) | |
| tree | c8e5a9f35d20d22a76b9c67dee073c0fb38bd706 /src/qt/bitcoin.cpp | |
| parent | Add export action to file menu (as long as we have a file menu, export certai... (diff) | |
| parent | Add Bitcoin-Qt test suite with some bitcoin: URL Tests to start. (diff) | |
| download | discoin-15b87b2ec40bdcbc7e8173c79b829fc0f550909e.tar.xz discoin-15b87b2ec40bdcbc7e8173c79b829fc0f550909e.zip | |
Merge pull request #807 from TheBlueMatt/bip21
Add req- prefixes to comply with BIP21.
Diffstat (limited to 'src/qt/bitcoin.cpp')
| -rw-r--r-- | src/qt/bitcoin.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index b25216fe9..8c4b0e6c1 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -131,6 +131,7 @@ std::string _(const char* psz) return QCoreApplication::translate("bitcoin-core", psz).toStdString(); } +#ifndef BITCOIN_QT_TEST int main(int argc, char *argv[]) { // Do this early as we don't want to bother initializing if we are just calling IPC @@ -257,3 +258,4 @@ int main(int argc, char *argv[]) } return 0; } +#endif // BITCOIN_QT_TEST |