From 0178050de4ddd8c5f065e96640e112025e85379d Mon Sep 17 00:00:00 2001 From: levonpetrosyan93 <45027856+levonpetrosyan93@users.noreply.github.com> Date: Mon, 1 Feb 2021 12:33:19 +0400 Subject: [PATCH] Removing unneeded check (#990) --- src/wallet/wallet.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index d1820abc9b..89c52e8054 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -5626,10 +5626,6 @@ bool CWallet::CreateLelantusMintTransactions( } } - if (!autoMintAll && valueToMint > 0) { - return false; - } - return true; }