Coins: remove unused function

This commit is contained in:
tobtoht 2025-03-12 14:34:22 +01:00
parent c5aef15bb0
commit de499b2386
No known key found for this signature in database
GPG key ID: E45B10DD027D2472
2 changed files with 0 additions and 11 deletions
src/libwalletqt

View file

@ -62,16 +62,6 @@ void Coins::refresh()
emit refreshFinished();
}
void Coins::refreshUnlocked()
{
for (CoinsInfo& c : m_rows) {
if (!c.unlocked) {
bool unlocked = m_wallet2->is_transfer_unlocked(c.unlockTime, c.blockHeight);
c.setUnlocked(unlocked);
}
}
}
quint64 Coins::count() const
{
return m_rows.length();

View file

@ -24,7 +24,6 @@ Q_OBJECT
public:
void refresh();
void refreshUnlocked();
quint64 count() const;
const CoinsInfo& getRow(qsizetype i);