Skip to content

Commit

Permalink
Merge pull request JoinMarket-Org#135 from CohibAA/patch-11
Browse files Browse the repository at this point in the history
bug fix involving on_tx_confirmed()
  • Loading branch information
chris-belcher committed Jul 6, 2015
2 parents 85055c4 + fed79a5 commit 58b6bd9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/maker.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,7 @@ def confirm_callback(self, txd, txid, confirmations):
finally:
self.maker.wallet_unspent_lock.release()
debug('tx in a block')
to_cancel, to_announce = self.maker.on_tx_confirmed(self,
confirmations, txid)
to_cancel, to_announce = self.maker.on_tx_confirmed(self, cjorder, confirmations, txid)
self.maker.modify_orders(to_cancel, to_announce)

def verify_unsigned_tx(self, txd):
Expand Down

0 comments on commit 58b6bd9

Please sign in to comment.