Commit 6722dc22 by lyh3024

fix

Change-Id: I5c8930a1a504c37e9c348ab657614dac05fd3547
parent d1d28556
...@@ -80,6 +80,7 @@ def get_block_list(request): ...@@ -80,6 +80,7 @@ def get_block_list(request):
for next_node in next_nodes: for next_node in next_nodes:
if next_node.id not in node_ids: if next_node.id not in node_ids:
transactions.append(next_node) transactions.append(next_node)
node_ids.append(next_node.id)
for r in a.transfer_out.all_relationships(next_node): for r in a.transfer_out.all_relationships(next_node):
if r.id not in rel_ids: if r.id not in rel_ids:
resp_relations.append(gen_rel_json(r)) resp_relations.append(gen_rel_json(r))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment