From 9495aabc8cfb208bb17553f85080967972c87c5d Mon Sep 17 00:00:00 2001 From: f321x Date: Sat, 5 Jul 2025 14:10:01 +0200 Subject: [PATCH] fix: do not catch exception in revealer plugin exceptions thrown inside `create_noise_file()` were catched and couldn't reach the `CrashReporter`. --- electrum/plugins/revealer/qt.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/electrum/plugins/revealer/qt.py b/electrum/plugins/revealer/qt.py index bb19aa7de..5044f6b6d 100644 --- a/electrum/plugins/revealer/qt.py +++ b/electrum/plugins/revealer/qt.py @@ -191,12 +191,8 @@ class Plugin(RevealerPlugin): # Define the create noise file function. def create_noise_file(): - try: - self.make_digital(self.d) - except Exception: - self.logger.exception('') - else: - self.cypherseed_dialog(window) + self.make_digital(self.d) + self.cypherseed_dialog(window) # Handle clicks on the buttons. create_button.clicked.connect(create_noise_file)