X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=blobdiff_plain;f=src%2Fqt%2Fwalletmodel.cpp;h=ff2dae33128bee6cc63e19d8ecbfa9a5ee3f5828;hp=baa8e7ed774f8f25ae8a2a59ffa22c47814329f7;hb=532b9005ab4fc02db3db424b4631fe395e0b9071;hpb=83ba9e1c5165dc7e89b10e63c82fa9393c1e5598 diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp index baa8e7e..ff2dae3 100644 --- a/src/qt/walletmodel.cpp +++ b/src/qt/walletmodel.cpp @@ -75,7 +75,7 @@ int WalletModel::getNumTransactions() const int numTransactions = 0; { LOCK(wallet->cs_wallet); - numTransactions = wallet->mapWallet.size(); + numTransactions = (int)(wallet->mapWallet.size()); } return numTransactions; }