Remove duplicates
authorsvost <ya.nowa@yandex.ru>
Wed, 29 Dec 2021 20:03:32 +0000 (23:03 +0300)
committersvost <ya.nowa@yandex.ru>
Wed, 29 Dec 2021 20:03:32 +0000 (23:03 +0300)
src/bignum.h
src/main.h

index 2c412f0..6ab5a6d 100644 (file)
@@ -720,9 +720,7 @@ public:
     friend inline const CBigNum operator/(const CBigNum& a, const CBigNum& b);
     friend inline const CBigNum operator%(const CBigNum& a, const CBigNum& b);
     friend inline const CBigNum operator*(const CBigNum& a, const CBigNum& b);
-    friend inline bool operator<(const CBigNum& a, const CBigNum& b);
     friend inline const CBigNum operator+(const CBigNum& a, const CBigNum& b);
-    friend inline const CBigNum operator-(const CBigNum& a, const CBigNum& b);
     friend inline const CBigNum operator*(const CBigNum& a);
     
     friend inline const CBigNum operator-(const CBigNum& a);
index 382ef1a..e753d4d 100644 (file)
@@ -140,11 +140,6 @@ bool VerifySignature(const CTransaction& txFrom, const CTransaction& txTo, unsig
 
 
 
-
-
-
-bool GetWalletFile(CWallet* pwallet, std::string &strWalletFileOut);
-
 /** Position on disk for a particular transaction. */
 class CDiskTxPos
 {