From 3555f430d2c250492d7362a77379a23c9a3b0116 Mon Sep 17 00:00:00 2001 From: random-zebra Date: Thu, 2 May 2019 11:18:29 +0200 Subject: [PATCH] [Wallet] Disable automint --- src/main.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 84efeed240e37..83cbe10ffd829 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -3580,11 +3580,15 @@ void static UpdateTip(CBlockIndex* pindexNew) { chainActive.SetTip(pindexNew); + /* Zerocoin minting is disabled + * #ifdef ENABLE_WALLET // If turned on AutoZeromint will automatically convert PIV to zPIV if (pwalletMain && pwalletMain->isZeromintEnabled()) pwalletMain->AutoZeromint(); #endif // ENABLE_WALLET + * + */ // New best block nTimeBestReceived = GetTime();