X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Fqt%2Fwalletmodel.cpp;h=ff2dae33128bee6cc63e19d8ecbfa9a5ee3f5828;hb=532b9005ab4fc02db3db424b4631fe395e0b9071;hp=baa8e7ed774f8f25ae8a2a59ffa22c47814329f7;hpb=48564f02c4769f26295bedfc04b796246ad0d0bc;p=novacoin.git 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; }