diff options
| author | j-berman <justinberman@protonmail.com> | 2022-09-06 23:21:25 -0600 |
|---|---|---|
| committer | j-berman <justinberman@protonmail.com> | 2022-09-06 23:21:25 -0600 |
| commit | 848a0c05b0c52c2c08fcd346d7f821b496f2d044 (patch) | |
| tree | 68cd40b09f398cd6ed0dcc642adcb8e95953d56e /src/simplewallet/simplewallet.h | |
| parent | 401f5d967b283aa9d74da65cef1e275221542535 (diff) | |
| download | monzero-core-848a0c05b0c52c2c08fcd346d7f821b496f2d044.tar.gz monzero-core-848a0c05b0c52c2c08fcd346d7f821b496f2d044.tar.xz monzero-core-848a0c05b0c52c2c08fcd346d7f821b496f2d044.zip | |
Fix segfault restoring encrypted multisig seed
Diffstat (limited to 'src/simplewallet/simplewallet.h')
| -rw-r--r-- | src/simplewallet/simplewallet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.h b/src/simplewallet/simplewallet.h index 6a9fa149d..b18fa2dd6 100644 --- a/src/simplewallet/simplewallet.h +++ b/src/simplewallet/simplewallet.h @@ -101,7 +101,7 @@ namespace cryptonote boost::optional<epee::wipeable_string> new_wallet(const boost::program_options::variables_map& vm, const cryptonote::account_public_address& address, const boost::optional<crypto::secret_key>& spendkey, const crypto::secret_key& viewkey); boost::optional<epee::wipeable_string> new_wallet(const boost::program_options::variables_map& vm, - const epee::wipeable_string &multisig_keys, const std::string &old_language); + const epee::wipeable_string &multisig_keys, const epee::wipeable_string &seed_pass, const std::string &old_language); boost::optional<epee::wipeable_string> new_wallet(const boost::program_options::variables_map& vm); boost::optional<epee::wipeable_string> open_wallet(const boost::program_options::variables_map& vm); bool close_wallet(); |
