1
0

define wallet.get_num_tx()

This commit is contained in:
ecdsa
2013-03-16 18:17:50 +01:00
parent fefb884794
commit d6952228be
3 changed files with 8 additions and 8 deletions

View File

@@ -407,6 +407,12 @@ class Wallet:
# redo labels
# self.update_tx_labels()
def get_num_tx(self, address):
n = 0
for tx in self.transactions.values():
if address in map(lambda x:x[0], tx.outputs): n += 1
return n
def get_address_flags(self, addr):
flags = "C" if self.is_change(addr) else "I" if addr in self.imported_keys.keys() else "-"