From fbd029d99d3d32e43d88c02673f90053a7e7057d Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Tue, 31 Jul 2018 23:28:42 +0100 Subject: [PATCH] Formatting --- src/wallet/rpcwallet.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index 04f3e9ebf..d196da4e5 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -3172,7 +3172,7 @@ UniValue z_listaddresses(const UniValue& params, bool fHelp) { std::set addresses; pwalletMain->GetPaymentAddresses(addresses); - for (auto addr : addresses ) { + for (auto addr : addresses) { if (fIncludeWatchonly || pwalletMain->HaveSpendingKey(addr)) { ret.push_back(EncodePaymentAddress(addr)); } @@ -3183,7 +3183,7 @@ UniValue z_listaddresses(const UniValue& params, bool fHelp) pwalletMain->GetSaplingPaymentAddresses(addresses); libzcash::SaplingIncomingViewingKey ivk; libzcash::SaplingFullViewingKey fvk; - for (auto addr : addresses ) { + for (auto addr : addresses) { if (fIncludeWatchonly || ( pwalletMain->GetSaplingIncomingViewingKey(addr, ivk) && pwalletMain->GetSaplingFullViewingKey(ivk, fvk) &&