Paper wallet for Hush, which you can use with no internet access while wearing a tinfoil hat inside of a Faraday cage. https://hush.is
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
684 B

5 years ago
#include "mainwindow.h"
#include "version.h"
5 years ago
#include <QApplication>
int main(int argc, char *argv[])
{
5 years ago
QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
4 years ago
QCoreApplication::setOrganizationDomain("hushwallet.co");
QCoreApplication::setOrganizationName("hushpaperwallet");
5 years ago
#ifdef Q_OS_LINUX
QFontDatabase::addApplicationFont(":/fonts/res/Ubuntu-R.ttf");
qApp->setFont(QFont("Ubuntu", 11, QFont::Normal, false));
#endif
5 years ago
QApplication a(argc, argv);
MainWindow w;
4 years ago
w.setWindowTitle(QString("hushpaperwallet ") + APP_VERSION);
5 years ago
w.show();
return a.exec();
}