Skip to content
Snippets Groups Projects
Commit 43c93753 authored by inso's avatar inso
Browse files

Bug fix in transactions

parent 392d410d
No related branches found
No related tags found
No related merge requests found
...@@ -124,9 +124,9 @@ Coins: ...@@ -124,9 +124,9 @@ Coins:
for coin in self.coins: for coin in self.coins:
tx += '%s' % coin tx += '%s' % coin
context_data.update(hdc.coins.view.Owner(coin, self.server, self.port).get()) ownership = hdc.coins.view.Owner(coin, self.server, self.port).get()
if 'transaction' in context_data: if 'transaction' in ownership:
tx += ':%(transaction)s\n' % context_data tx += ':%(transaction)s\n' % ownership
else: else:
tx += "\n" tx += "\n"
......
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