electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 07896efa21a06d20a2f11d9cb4d77fb187bf7f8c
parent 426cd6dd60c512a7b2a066c9660c192d6a8e527a
Author: ThomasV <thomasv@electrum.org>
Date:   Thu, 22 Dec 2016 17:36:05 +0100

minor fix

Diffstat:
Mgui/qt/main_window.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py @@ -1766,7 +1766,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): if not bitcoin.is_p2pkh(address): self.show_message('Cannot sign messages with this type of address.') return - if not wallet.is_mine(address): + if not self.wallet.is_mine(address): self.show_message('Address not in wallet.') return task = partial(self.wallet.sign_message, address, message, password)