From 89d6971b8c1ec474f58b08a642e2855be48f120b Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sat, 5 Nov 2011 08:32:58 +0100 Subject: [PATCH] add recipient to addressbook --- client/electrum | 5 ++++- client/gui.py | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/client/electrum b/client/electrum index c7e7e29ec..6f86cf717 100755 --- a/client/electrum +++ b/client/electrum @@ -561,7 +561,10 @@ class Wallet: out = self.send_tx(tx) if out != tx_hash: return False, "error: hash mismatch" - wallet.labels[tx_hash] = label + if to_address not in self.addressbook: + self.addressbook.append(to_address) + if label: + wallet.labels[tx_hash] = label wallet.save() return True, tx_hash diff --git a/client/gui.py b/client/gui.py index 4cf01e3f5..b3dae9d3d 100644 --- a/client/gui.py +++ b/client/gui.py @@ -462,6 +462,7 @@ class BitcoinGUI: payto_entry.set_text("") label_entry.set_text("") amount_entry.set_text("") + self.update_sending_tab() else: show_message( msg )