diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index 2a34dec930..109f5840e6 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -102,9 +102,10 @@ void WalletTxToJSON(const CWalletTx& wtx, UniValue& entry) rbfStatus = "yes"; } entry.push_back(Pair("bip125-replaceable", rbfStatus)); - - BOOST_FOREACH(const PAIRTYPE(string,string)& item, wtx.mapValue) - entry.push_back(Pair(item.first, item.second)); + std::string blindfactors; + for (unsigned int i=0; ivout.size(); i++) + blindfactors += wtx.GetBlindingFactor(i).GetHex() + ":"; + entry.push_back(Pair("blindingfactors", blindfactors)); } string AccountFromValue(const UniValue& value)