Browse Source

Str

z_createrawtransaction
jl777 5 years ago
parent
commit
2c272b175d
  1. 2
      src/util.cpp

2
src/util.cpp

@ -405,7 +405,7 @@ void SplitStr(const std::string& strVal, std::vector<std::string> outVals)
while ( ss >> str )
{
//outVals[numVals] = i;
outVals.push_back(i);
outVals.push_back(str);
numVals += 1;
while ( ss.peek() == ' ' )

Loading…
Cancel
Save