Skip to content

Commit

Permalink
Namecoin: Fix tuple size mismatch in get_wallet_delta
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyRand committed Oct 1, 2018
1 parent 0dac8a1 commit d774840
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion electrum_nmc/address_synchronizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ def get_wallet_delta(self, tx):
is_partial = True
if not is_mine:
is_partial = False
for addr, value in tx.get_outputs():
for addr, value, name_op in tx.get_outputs():
v_out += value
if self.is_mine(addr):
v_out_mine += value
Expand Down

0 comments on commit d774840

Please sign in to comment.