Skip to content
Snippets Groups Projects
Commit 8fc7fd55 authored by inso's avatar inso
Browse files

Fix bug #338

parent 0ed08e11
No related branches found
No related tags found
No related merge requests found
......@@ -267,9 +267,12 @@ class Wallet(QObject):
self.caches[community.currency]._transfers.append(transfer)
result = self.tx_inputs(int(amount), community)
inputs = result[0]
self.caches[community.currency].available_sources = result[1][1:]
try:
result = self.tx_inputs(int(amount), community)
inputs = result[0]
self.caches[community.currency].available_sources = result[1][1:]
except NotEnoughMoneyError as e:
return False, str(e)
logging.debug("Inputs : {0}".format(inputs))
outputs = self.tx_outputs(recipient, amount, inputs)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment