X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Fqt%2Fmintingtablemodel.cpp;fp=src%2Fqt%2Fmintingtablemodel.cpp;h=139116c294ece2c414edab3cb4963a0c5da763c6;hb=e0bc1bad2b8578158adf0fb352cfffc4262560a2;hp=f97520cc670f5bc9b1cc9b70173f629ef48c6c18;hpb=5c453b40444a19284a1ba7ee41e761812fbaa52b;p=novacoin.git diff --git a/src/qt/mintingtablemodel.cpp b/src/qt/mintingtablemodel.cpp index f97520c..139116c 100644 --- a/src/qt/mintingtablemodel.cpp +++ b/src/qt/mintingtablemodel.cpp @@ -369,7 +369,7 @@ QString MintingTableModel::formatTxPoSReward(KernelRecord *wtx) const QString posReward; const CBlockIndex *p = GetLastBlockIndex(pindexBest, true); double difficulty = GetDifficulty(p); - posReward += QString(QObject::tr("Potential PoS reward = from %1 to %2 ")).arg(QString::number(wtx->getPoSReward(difficulty, 0),'f', 6), + posReward += QString(QObject::tr("from %1 NVC to %2 NVC")).arg(QString::number(wtx->getPoSReward(difficulty, 0),'f', 6), QString::number(wtx->getPoSReward(difficulty, mintingInterval),'f', 6)); return posReward; }