diff --git a/src/miner.cpp b/src/miner.cpp index 7227c020e..6cb2f1308 100644 --- a/src/miner.cpp +++ b/src/miner.cpp @@ -688,6 +688,7 @@ void static BitcoinMiner(CWallet *pwallet) crypto_generichash_blake2b_update(&curr_state,pblock->nNonce.begin(),pblock->nNonce.size()); // (x_1, x_2, ...) = A(I, V, n, k) LogPrint("pow", "Running Equihash solver \"%s\" with nNonce = %s\n",solver, pblock->nNonce.ToString()); + fprintf(stderr,"running solver\n"); std::function)> validBlock = [&pblock, &hashTarget, &pwallet, &reservekey, &m_cs, &cancelSolver, &chainparams] (std::vector soln) diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index fb53715e4..419f9dec3 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -1639,8 +1639,7 @@ void CWalletTx::GetAmounts(list& listReceived, CTxDestination address; if (!ExtractDestination(txout.scriptPubKey, address)) { - LogPrintf("CWalletTx::GetAmounts: Unknown transaction type found, txid %s\n", - this->GetHash().ToString()); + //LogPrintf("CWalletTx::GetAmounts: Unknown transaction type found, txid %s\n",this->GetHash().ToString()); complains on the opreturns address = CNoDestination(); }