mirror of
https://github.com/monero-project/monero.git
synced 2024-12-23 12:09:54 +00:00
Merge pull request #7761
8ef51dc
wallet_api: fix typo in exportKeyImages (selsta)
This commit is contained in:
commit
3c8c8e5a5b
1 changed files with 1 additions and 1 deletions
|
@ -1180,7 +1180,7 @@ bool WalletImpl::exportKeyImages(const string &filename, bool all)
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
if (!m_wallet->export_key_images(filename), all)
|
if (!m_wallet->export_key_images(filename, all))
|
||||||
{
|
{
|
||||||
setStatusError(tr("failed to save file ") + filename);
|
setStatusError(tr("failed to save file ") + filename);
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue