wallet: fix --generate-from-json using wrong password

This commit is contained in:
moneromooo-monero
2018-10-01 11:18:50 +00:00
parent 83d8f03c23
commit 25e5890d37
6 changed files with 20 additions and 7 deletions

View File

@@ -221,6 +221,10 @@ namespace tools
: m_password(std::move(password))
{
}
password_container::password_container(const epee::wipeable_string& password) noexcept
: m_password(password)
{
}
password_container::~password_container() noexcept
{