This commit is contained in:
ThomasV 2017-01-06 18:12:10 +01:00
parent de018a72a6
commit 253df89af5
1 changed files with 1 additions and 1 deletions

View File

@ -1126,7 +1126,7 @@ class Abstract_Wallet(PrintError):
domain = self.get_receiving_addresses()
choice = domain[0]
for addr in domain:
if addr not in self.history.keys():
if not self.history.get(addr):
if addr not in self.receive_requests.keys():
return addr
else: