wallet_api: fix typo in exportKeyImages

This commit is contained in:
selsta 2021-06-23 20:43:19 +02:00
parent 282e2ef058
commit 8ef51dc546
No known key found for this signature in database
GPG Key ID: 2EA0A99A8B07AE5E
1 changed files with 1 additions and 1 deletions

View File

@ -1176,7 +1176,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;