Skip to content

Commit

Permalink
LogPrintf removed
Browse files Browse the repository at this point in the history
  • Loading branch information
levonpetrosyan93 committed Dec 23, 2023
1 parent 7e76c13 commit d2ae324
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/wallet/rpcwallet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3361,7 +3361,6 @@ UniValue listsparkmints(const JSONRPCRequest& request) {
assert(pwallet != NULL);

std::unordered_map<uint256, CSparkMintMeta> coins_ = pwallet->sparkWallet->getMintMap();
LogPrintf("coins.size()=%s\n", coins_.size());

// sort the result so you can easily compare when testing
std::vector<std::pair<uint256, CSparkMintMeta> > coins(coins_.begin(), coins_.end());
Expand Down Expand Up @@ -3961,7 +3960,7 @@ UniValue identifysparkcoins(const JSONRPCRequest& request)
uint256 txHash = tx->GetHash();
pwallet->sparkWallet->UpdateMintState(coins, txHash, walletdb);
}

results.push_back(Pair("availableBalance",pwallet->sparkWallet->getAvailableBalance()));
results.push_back(Pair("unconfirmedBalance",pwallet->sparkWallet->getUnconfirmedBalance()));
results.push_back(Pair("fullBalance",pwallet->sparkWallet->getFullBalance()));
Expand Down

0 comments on commit d2ae324

Please sign in to comment.