mirror of
https://github.com/feather-wallet/feather.git
synced 2025-04-23 20:58:13 +00:00
Coins: remove unused function
This commit is contained in:
parent
c5aef15bb0
commit
de499b2386
2 changed files with 0 additions and 11 deletions
|
@ -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();
|
||||
|
|
|
@ -24,7 +24,6 @@ Q_OBJECT
|
|||
|
||||
public:
|
||||
void refresh();
|
||||
void refreshUnlocked();
|
||||
quint64 count() const;
|
||||
|
||||
const CoinsInfo& getRow(qsizetype i);
|
||||
|
|
Loading…
Reference in a new issue