diff options
| author | Ilya Kitaev <mbg033@gmail.com> | 2016-06-22 15:06:19 +0300 |
|---|---|---|
| committer | Ilya Kitaev <mbg033@gmail.com> | 2016-06-23 16:01:41 +0300 |
| commit | c1d9e7cd2a9e8b80cb6926934cc6937f016b275d (patch) | |
| tree | f3e4b3c8234fda195472641ec34df4e7e165d2f5 /src/wallet/api | |
| parent | 563baf1b68b091fc39054e4da9b74a05da71de98 (diff) | |
| download | monzero-core-c1d9e7cd2a9e8b80cb6926934cc6937f016b275d.tar.gz monzero-core-c1d9e7cd2a9e8b80cb6926934cc6937f016b275d.tar.xz monzero-core-c1d9e7cd2a9e8b80cb6926934cc6937f016b275d.zip | |
commented regex
Diffstat (limited to 'src/wallet/api')
| -rw-r--r-- | src/wallet/api/wallet_manager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/api/wallet_manager.cpp b/src/wallet/api/wallet_manager.cpp index 2327d11f8..3a97538b4 100644 --- a/src/wallet/api/wallet_manager.cpp +++ b/src/wallet/api/wallet_manager.cpp @@ -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> 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::path work_dir(path); |
