forked from lthn/blockchain
gui build fixed
This commit is contained in:
parent
6f682bf79d
commit
e253876a93
2 changed files with 6 additions and 0 deletions
|
|
@ -1981,6 +1981,11 @@ void wallet2::store()
|
||||||
store(m_wallet_file, m_password);
|
store(m_wallet_file, m_password);
|
||||||
}
|
}
|
||||||
//----------------------------------------------------------------------------------------------------
|
//----------------------------------------------------------------------------------------------------
|
||||||
|
void wallet2::store(const std::wstring& path)
|
||||||
|
{
|
||||||
|
store(path, m_password);
|
||||||
|
}
|
||||||
|
//----------------------------------------------------------------------------------------------------
|
||||||
void wallet2::store(const std::wstring& path_to_save, const std::string& password)
|
void wallet2::store(const std::wstring& path_to_save, const std::string& password)
|
||||||
{
|
{
|
||||||
LOG_PRINT_L0("(before storing: pending_key_images: " << m_pending_key_images.size() << ", pki file elements: " << m_pending_key_images_file_container.size() << ", tx_keys: " << m_tx_keys.size() << ")");
|
LOG_PRINT_L0("(before storing: pending_key_images: " << m_pending_key_images.size() << ", pki file elements: " << m_pending_key_images_file_container.size() << ", tx_keys: " << m_tx_keys.size() << ")");
|
||||||
|
|
|
||||||
|
|
@ -446,6 +446,7 @@ namespace tools
|
||||||
void restore(const std::wstring& path, const std::string& pass, const std::string& restore_key);
|
void restore(const std::wstring& path, const std::string& pass, const std::string& restore_key);
|
||||||
void load(const std::wstring& wallet, const std::string& password);
|
void load(const std::wstring& wallet, const std::string& password);
|
||||||
void store();
|
void store();
|
||||||
|
void store(const std::wstring& path);
|
||||||
void store(const std::wstring& path, const std::string& password);
|
void store(const std::wstring& path, const std::string& password);
|
||||||
void store_watch_only(const std::wstring& path, const std::string& password) const;
|
void store_watch_only(const std::wstring& path, const std::string& password) const;
|
||||||
bool store_keys(std::string& buff, const std::string& password, bool store_as_watch_only = false);
|
bool store_keys(std::string& buff, const std::string& password, bool store_as_watch_only = false);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue