From 18bc6b0cc8d98abfdb21e67635699ff46a3e346c Mon Sep 17 00:00:00 2001 From: adityapk00 Date: Wed, 24 Oct 2018 21:06:03 -0700 Subject: [PATCH] intermediate checkin --- .gitignore | 1 + src/main.cpp | 4 ++++ src/turnstile.h | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index dcaf0f6..7c4018d 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,7 @@ src/precompiled.h.cpp .qmake.stash zec-qt-wallet zec-qt-wallet.vcxproj* +zec-qt-wallet.pro.* Makefile Makefile.* qrc_application.cpp diff --git a/src/main.cpp b/src/main.cpp index c86c2af..f96df19 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -28,6 +28,10 @@ int main(int argc, char *argv[]) MainWindow w; w.setWindowTitle("zec-qt-wallet v" + QString(APP_VERSION)); w.show(); + + // Temp + Turnstile t; + qDebug() << t.splitAmount(1245.2294371, 3); return QApplication::exec(); } diff --git a/src/turnstile.h b/src/turnstile.h index 427634b..2717b83 100644 --- a/src/turnstile.h +++ b/src/turnstile.h @@ -34,4 +34,4 @@ private: RPC* rpc; }; -#endif \ No newline at end of file +#endif