X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=blobdiff_plain;f=src%2Fwalletdb.cpp;fp=src%2Fwalletdb.cpp;h=5c78ff2d2c5abeac14f556b846d0645ccb3a679f;hp=a072f18783d872a5154c351802022e26ad7744e0;hb=8accece87de023c512e1cef6f22c519fe5ff47d7;hpb=5d03ac2b46f39453274e84b1f71c64b51d445a26 diff --git a/src/walletdb.cpp b/src/walletdb.cpp index a072f18..5c78ff2 100644 --- a/src/walletdb.cpp +++ b/src/walletdb.cpp @@ -879,7 +879,8 @@ bool ImportWallet(CWallet *pwallet, const string& strLocation) continue; std::vector vstr; - boost::split(vstr, line, boost::is_any_of(" ")); + istringstream iss(line); + copy(istream_iterator(iss), istream_iterator(), back_inserter(vstr)); if (vstr.size() < 2) continue; CBitcoinSecret vchSecret;