Removed unused == operator from CMutableTransaction.

This commit is contained in:
lucash.dev@gmail.com 2018-06-10 13:38:38 -07:00
parent 56f69360dc
commit 55771b7c6a

View file

@ -388,11 +388,6 @@ struct CMutableTransaction
*/ */
uint256 GetHash() const; uint256 GetHash() const;
friend bool operator==(const CMutableTransaction& a, const CMutableTransaction& b)
{
return a.GetHash() == b.GetHash();
}
bool HasWitness() const bool HasWitness() const
{ {
for (size_t i = 0; i < vin.size(); i++) { for (size_t i = 0; i < vin.size(); i++) {