Skip to content

Commit

Permalink
[Wallet] Disable automint
Browse files Browse the repository at this point in the history
  • Loading branch information
random-zebra committed Jun 5, 2019
1 parent 2708b6f commit 3555f43
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 3555f43

Please sign in to comment.