ELEMENTS:
| 99 | |
| 100 | // ELEMENTS: |
| 101 | bool CCoinsViewDB::IsPeginSpent(const std::pair<uint256, COutPoint> &outpoint) const { |
| 102 | return m_db->Exists(std::make_pair(DB_PEGIN_FLAG, outpoint)); |
| 103 | } |
| 104 | |
| 105 | uint256 CCoinsViewDB::GetBestBlock() const { |
| 106 | uint256 hashBestChain; |
no test coverage detected