Skip to content

Commit

Permalink
Bug fix: address history txpoint type 'escrow'.
Browse files Browse the repository at this point in the history
  • Loading branch information
jtobey committed Mar 24, 2014
1 parent 07890d6 commit d9064a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Abe/DataStore.py
Expand Up @@ -2948,12 +2948,12 @@ def get_received(escrow):
in_rows = get_sent(True)
if len(in_rows) > max_rows >= 0:
return None
txpoints += map(parse_direct_in, in_rows)
txpoints += map(parse_escrow_in, in_rows)

out_rows = get_received(True)
if len(out_rows) > max_rows >= 0:
return None
txpoints += map(parse_direct_out, out_rows)
txpoints += map(parse_escrow_out, out_rows)

def cmp_txpoint(p1, p2):
return cmp(p1['nTime'], p2['nTime']) \
Expand Down

0 comments on commit d9064a9

Please sign in to comment.