diff options
author | selsta <selsta@sent.at> | 2021-06-23 20:43:19 +0200 |
---|---|---|
committer | selsta <selsta@sent.at> | 2021-06-23 20:44:13 +0200 |
commit | 8ef51dc546c1c3ef8b6e65a5636d54fea6fba2ed (patch) | |
tree | 9637b1e5b8db6e863f1ad760e4c8aab1d0577063 /src/wallet/api/wallet.cpp | |
parent | Merge pull request #7738 (diff) | |
download | monero-8ef51dc546c1c3ef8b6e65a5636d54fea6fba2ed.tar.xz |
wallet_api: fix typo in exportKeyImages
Diffstat (limited to 'src/wallet/api/wallet.cpp')
-rw-r--r-- | src/wallet/api/wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp index db3049f9e..8d4b0b9d2 100644 --- a/src/wallet/api/wallet.cpp +++ b/src/wallet/api/wallet.cpp @@ -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; |