Skip to content
Snippets Groups Projects
Commit 5b2a3822 authored by inso's avatar inso
Browse files

Fixing bug in Sources

parent 33e93f41
No related branches found
No related tags found
No related merge requests found
...@@ -38,6 +38,9 @@ class Process(Tx): ...@@ -38,6 +38,9 @@ class Process(Tx):
class Sources(Tx): class Sources(Tx):
"""Get transaction sources.""" """Get transaction sources."""
def __init__(self, connection_handler, pubkey, module='tx'):
super(Tx, self).__init__(connection_handler, module)
self.pubkey = pubkey
def __get__(self, **kwargs): def __get__(self, **kwargs):
assert self.pubkey is not None assert self.pubkey is not None
......
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