Browse Source

UniValue::getValues const reference

v1.0.9-lin
Jack Grigg 7 years ago
parent
commit
c24109ecc3
No known key found for this signature in database GPG Key ID: 6A6914DAFBEA00DA
  1. 2
      src/wallet/rpcwallet.cpp

2
src/wallet/rpcwallet.cpp

@ -3183,7 +3183,7 @@ UniValue z_getoperationstatus_IMPL(const UniValue& params, bool fRemoveFinishedO
std::set<AsyncRPCOperationId> filter;
if (params.size()==1) {
UniValue ids = params[0].get_array();
for (UniValue & v : ids.getValues()) {
for (const UniValue & v : ids.getValues()) {
filter.insert(v.get_str());
}
}

Loading…
Cancel
Save