aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2021-07-10 17:59:56 -0400
committerluigi1111 <luigi1111w@gmail.com>2021-07-10 17:59:56 -0400
commit3c8c8e5a5b2c2c9b3b9f8a5c5fdc72c38bab2940 (patch)
tree45c037377a6996aba76941ffe0340ce31d55aa93 /src
parentMerge pull request #7754 (diff)
parentwallet_api: fix typo in exportKeyImages (diff)
downloadmonero-3c8c8e5a5b2c2c9b3b9f8a5c5fdc72c38bab2940.tar.xz
Merge pull request #7761
8ef51dc wallet_api: fix typo in exportKeyImages (selsta)
Diffstat (limited to 'src')
-rw-r--r--src/wallet/api/wallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp
index 8da99eb0c..b4fa1ea8c 100644
--- a/src/wallet/api/wallet.cpp
+++ b/src/wallet/api/wallet.cpp
@@ -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;