diff --git a/electrum/gui/qt/paytoedit.py b/electrum/gui/qt/paytoedit.py index 021023fc0..5677bcae5 100644 --- a/electrum/gui/qt/paytoedit.py +++ b/electrum/gui/qt/paytoedit.py @@ -257,13 +257,6 @@ class PayToEdit(CompletionTextEdit, ScanQRTextEdit, Logger): self.setMaximumHeight(h) self.verticalScrollBar().hide() - def qr_input(self, *, callback=None): - def _on_qr_success(data): - if data.lower().startswith(BITCOIN_BIP21_URI_SCHEME + ':'): - self.win.pay_to_URI(data) - # TODO: update fee - super(PayToEdit, self).qr_input(callback=_on_qr_success) - def resolve(self): self.is_alias = False if self.hasFocus():