aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorselsta <selsta@sent.at>2021-06-23 20:43:19 +0200
committerselsta <selsta@sent.at>2021-08-01 15:47:05 +0200
commitdb564efe0b35b036205778225bfe3557f24a70a5 (patch)
tree17c95f9f1cfc32c0d1d4830d37432f5fca7b3c7b
parentdepends: add getmonero package mirror (diff)
downloadmonero-db564efe0b35b036205778225bfe3557f24a70a5.tar.xz
wallet_api: fix typo in exportKeyImages
-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 b2ffce229..ff10eb519 100644
--- a/src/wallet/api/wallet.cpp
+++ b/src/wallet/api/wallet.cpp
@@ -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;