From 55771b7c6a8d4a204c63e70db73a0071c41a0dc4 Mon Sep 17 00:00:00 2001 From: "lucash.dev@gmail.com" Date: Sun, 10 Jun 2018 13:38:38 -0700 Subject: [PATCH] Removed unused == operator from CMutableTransaction. --- src/primitives/transaction.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/primitives/transaction.h b/src/primitives/transaction.h index 1c846d38e..360615ec5 100644 --- a/src/primitives/transaction.h +++ b/src/primitives/transaction.h @@ -388,11 +388,6 @@ struct CMutableTransaction */ uint256 GetHash() const; - friend bool operator==(const CMutableTransaction& a, const CMutableTransaction& b) - { - return a.GetHash() == b.GetHash(); - } - bool HasWitness() const { for (size_t i = 0; i < vin.size(); i++) {