wallet_api: fix typo in exportKeyImages

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

View File

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