Merge pull request #7761

8ef51dc wallet_api: fix typo in exportKeyImages (selsta)
This commit is contained in:
luigi1111 2021-07-10 17:59:56 -04:00
commit 3c8c8e5a5b
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010
1 changed files with 1 additions and 1 deletions

View File

@ -1180,7 +1180,7 @@ bool WalletImpl::exportKeyImages(const string &filename, bool all)
try
{
if (!m_wallet->export_key_images(filename), all)
if (!m_wallet->export_key_images(filename, all))
{
setStatusError(tr("failed to save file ") + filename);
return false;