Merge pull request #8020

47e7a43 wallet_api: enable set_strict_default_file_permissions (tobtoht)
This commit is contained in:
luigi1111 2021-11-01 12:31:32 -05:00
commit d573b3d76c
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010
2 changed files with 6 additions and 1 deletions

View File

@ -49,6 +49,11 @@ namespace epee {
namespace Monero {
WalletManagerImpl::WalletManagerImpl()
{
tools::set_strict_default_file_permissions(true);
}
Wallet *WalletManagerImpl::createWallet(const std::string &path, const std::string &password,
const std::string &language, NetworkType nettype, uint64_t kdf_rounds)
{

View File

@ -95,7 +95,7 @@ public:
bool setProxy(const std::string &address) override;
private:
WalletManagerImpl() {}
WalletManagerImpl();
friend struct WalletManagerFactory;
net::http::client m_http_client;
std::string m_errorString;