diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 6fdd7b68..d048f9ca 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -1163,7 +1163,7 @@ class ElectrumWindow(QMainWindow): menu.addAction(_("Send From"), lambda: self.send_from_addresses(addrs)) - run_hook('receive_menu', menu) + run_hook('receive_menu', menu, addr) menu.exec_(self.receive_list.viewport().mapToGlobal(position)) diff --git a/plugins/pointofsale.py b/plugins/pointofsale.py index f08bb1c2..eb77937c 100644 --- a/plugins/pointofsale.py +++ b/plugins/pointofsale.py @@ -251,7 +251,7 @@ class Plugin(BasePlugin): item.setFlags(Qt.ItemIsSelectable | Qt.ItemIsUserCheckable | Qt.ItemIsEnabled | Qt.ItemIsDragEnabled) - def receive_menu(self, menu): + def receive_menu(self, menu, addr): menu.addAction(_("Request amount"), self.edit_amount) menu.addAction(_("Show Invoice"), lambda: self.toggle_QR_window(True))