Merge f697c068eb into merged_master (Bitcoin PR bitcoin/bitcoin#25438)

This commit is contained in:
James Dorfman 2024-09-16 05:06:36 +00:00
commit 1a34bdf273
3 changed files with 0 additions and 28 deletions

View file

@ -237,7 +237,6 @@ public:
bool GetKey(COutPoint &key) const override;
bool GetValue(Coin &coin) const override;
unsigned int GetValueSize() const override;
bool Valid() const override;
void Next() override;
@ -283,11 +282,6 @@ bool CCoinsViewDBCursor::GetValue(Coin &coin) const
return pcursor->GetValue(coin);
}
unsigned int CCoinsViewDBCursor::GetValueSize() const
{
return pcursor->GetValueSize();
}
bool CCoinsViewDBCursor::Valid() const
{
return keyTmp.first == DB_COIN;