mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-03-13 00:54:53 +01:00
wallet: IsLockedCoin, 'COutPoint' arg instead of (hash, index)
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user