wallet: IsLockedCoin, 'COutPoint' arg instead of (hash, index)

This commit is contained in:
furszy
2022-04-27 10:37:50 -03:00
parent 9472ca0a65
commit 91902b7720
5 changed files with 6 additions and 8 deletions

View File

@@ -245,7 +245,7 @@ public:
bool isLockedCoin(const COutPoint& output) override
{
LOCK(m_wallet->cs_wallet);
return m_wallet->IsLockedCoin(output.hash, output.n);
return m_wallet->IsLockedCoin(output);
}
void listLockedCoins(std::vector<COutPoint>& outputs) override
{