aboutsummaryrefslogtreecommitdiff
path: root/src/wallet
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2019-03-04 14:58:04 +0200
committerRiccardo Spagni <ric@spagni.net>2019-03-04 14:58:04 +0200
commit194c4c0bcb9f308e7e5543bd06b829eb8dea38df (patch)
tree1c8661ec9349c295b7842a5f1bfc0031eef12788 /src/wallet
parent1b4fa00d7c21a72267968438b0a3cd8eeac50977 (diff)
parenta17da7202bcd176a0134ebdaeba6fbce40e745fc (diff)
downloadmonzero-core-194c4c0bcb9f308e7e5543bd06b829eb8dea38df.tar.gz
monzero-core-194c4c0bcb9f308e7e5543bd06b829eb8dea38df.tar.xz
monzero-core-194c4c0bcb9f308e7e5543bd06b829eb8dea38df.zip
Merge pull request #5128
a17da720 Print the reason why a notification spec failed to parse (moneromooo-monero) 356d8137 blockchain: include number of discarded blocks in --reorg-notify (moneromooo-monero) 4d598e3d core: add a few more block rate window sizes (moneromooo-monero) d4fb9641 core: add --block-rate-notify (moneromooo-monero) 28b6dbf2 notify: fix tokenizing being too strict (moneromooo-monero)
Diffstat (limited to 'src/wallet')
-rw-r--r--src/wallet/wallet2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp
index c02d10ab4..cfb1d8684 100644
--- a/src/wallet/wallet2.cpp
+++ b/src/wallet/wallet2.cpp
@@ -373,7 +373,7 @@ std::unique_ptr<tools::wallet2> make_basic(const boost::program_options::variabl
}
catch (const std::exception &e)
{
- MERROR("Failed to parse tx notify spec");
+ MERROR("Failed to parse tx notify spec: " << e.what());
}
return wallet;