Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
ffranr committed Sep 4, 2023
1 parent ab506bb commit acf2c94
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
6 changes: 3 additions & 3 deletions itest/send_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ func testBasicSendUnidirectional(t *harnessTest) {
t, t.tapd, sendResp, genInfo.AssetId,
[]uint64{currentUnits, numUnits}, i, i+1,
)
_ = sendProof(
t, t.tapd, secondTapd, bobAddr.ScriptKey, genInfo,
)
//_ = sendProof(
// t, t.tapd, secondTapd, bobAddr.ScriptKey, genInfo,
//)
AssertNonInteractiveRecvComplete(t.t, secondTapd, i+1)
}

Expand Down
9 changes: 7 additions & 2 deletions tapgarden/custodian.go
Original file line number Diff line number Diff line change
Expand Up @@ -337,11 +337,16 @@ func (c *Custodian) inspectWalletTx(walletTx *lndclient.Transaction) error {
return err
}

// We are not interested in the outpoint if we don't know of a
// pre-stored address associated with it.
if addr == nil {
continue
}

// TODO(ffranr): This proof courier disabled check should be
// removed. It was implemented because some integration test do
// not setup and use a proof courier.
skipProofCourier := c.cfg.ProofCourierCfg == nil || addr == nil
if skipProofCourier {
if c.cfg.ProofCourierCfg == nil {
continue
}

Expand Down

0 comments on commit acf2c94

Please sign in to comment.