Skip to content

Commit

Permalink
add support for multiple payment on a single accept offer
Browse files Browse the repository at this point in the history
  • Loading branch information
grazcoin committed Mar 27, 2014
1 parent eeaa148 commit 34e23a5
Show file tree
Hide file tree
Showing 2 changed files with 179 additions and 55 deletions.
2 changes: 1 addition & 1 deletion msc_utils_parsing.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ def parse_multisig(tx, tx_hash='unknown'):
error('cannot parse dataHex_deobfuscated_list')

# no recipient? allow for sell offer
if to_address=='unknown' and data_dict['transactionType'] != '0014':
if to_address=='unknown' and (data_dict['transactionType'] == '0000' or data_dict['transactionType'] == '0016'):
info('no recipient tx '+tx_hash)
return {'tx_hash':tx_hash, 'invalid':(True, 'no recipient')}

Expand Down
Loading

0 comments on commit 34e23a5

Please sign in to comment.