diff options
| author | Riccardo Spagni <ric@spagni.net> | 2017-03-18 20:30:19 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2017-03-18 20:30:19 +0200 |
| commit | f33a696ec7de8dbadcc65cbed4bcb1ef7b720609 (patch) | |
| tree | e81c162369e84bf36f95db167238fa2d8dc171d3 /src/wallet/api/wallet.cpp | |
| parent | 9aac64c2381864fe23866279d4bd973888a7080b (diff) | |
| parent | d0238313278206e505473cef4d4bed88b75b96fd (diff) | |
| download | monzero-core-f33a696ec7de8dbadcc65cbed4bcb1ef7b720609.tar.gz monzero-core-f33a696ec7de8dbadcc65cbed4bcb1ef7b720609.tar.xz monzero-core-f33a696ec7de8dbadcc65cbed4bcb1ef7b720609.zip | |
Merge pull request #1883
d0238313 use const references in catch blocks (moneromooo-monero)
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 963bbe0ab..d5c2fbda2 100644 --- a/src/wallet/api/wallet.cpp +++ b/src/wallet/api/wallet.cpp @@ -833,7 +833,7 @@ bool WalletImpl::exportKeyImages(const string &filename) return false; } } - catch (std::exception &e) + catch (const std::exception &e) { LOG_ERROR("Error exporting key images: " << e.what()); m_errorString = e.what(); |
