1
0

Updated Requests

- added Date and Account field to Saved Requests
- requests are now saved as dict()
  old requests will be deleted!!
- Account field is hidden when only 1 account is available
- address line now follows the current_account
- saved requests is sortable, default sorted by date
- saved requests only shows request for current_account
This commit is contained in:
Tafelpoot
2014-11-14 19:47:34 +01:00
parent 9b28ed9ba0
commit 218a1ee2f7
2 changed files with 48 additions and 15 deletions

View File

@@ -483,10 +483,10 @@ class Abstract_Wallet(object):
return addr_list
def get_account_from_address(self, addr):
"Returns the account that contains this address, or None"
"Returns the account name that contains this address, or None"
for acc_id in self.accounts: # similar to get_address_index but simpler
if addr in self.get_account_addresses(acc_id):
return self.accounts[acc_id]
return self.get_account_name(acc_id)
return None
def get_account_balance(self, account):