mirror of
https://github.com/monero-project/monero.git
synced 2024-11-17 16:27:39 +00:00
commented regex
This commit is contained in:
parent
563baf1b68
commit
c1d9e7cd2a
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ bool WalletManagerImpl::walletExists(const std::string &path)
|
||||||
std::vector<std::string> WalletManagerImpl::findWallets(const std::string &path)
|
std::vector<std::string> WalletManagerImpl::findWallets(const std::string &path)
|
||||||
{
|
{
|
||||||
std::vector<std::string> result;
|
std::vector<std::string> result;
|
||||||
const boost::regex wallet_rx("(.*)\\.(address\\.txt)$");
|
const boost::regex wallet_rx("(.*)\\.(address\\.txt)$"); // searching for <wallet_name>.address.txt files
|
||||||
boost::filesystem::recursive_directory_iterator end_itr; // Default ctor yields past-the-end
|
boost::filesystem::recursive_directory_iterator end_itr; // Default ctor yields past-the-end
|
||||||
boost::filesystem::path work_dir(path);
|
boost::filesystem::path work_dir(path);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue