Skip to content

Commit

Permalink
Fix problem where Spendable no longer has address method.
Browse files Browse the repository at this point in the history
  • Loading branch information
richardkiss committed Jan 6, 2020
1 parent 11f60a7 commit f611038
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pycoin/coins/tx_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,5 +154,5 @@ def create_signed_tx(network, spendables, payables, wifs=[], fee="standard",
for idx, tx_out in enumerate(tx.txs_in):
if not tx.is_solution_ok(idx):
raise SecretExponentMissing("failed to sign spendable for %s" %
tx.unspents[idx].address())
tx.unspents[idx])
return tx

0 comments on commit f611038

Please sign in to comment.