We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5890fcd commit ef90f31Copy full SHA for ef90f31
tapfreighter/chain_porter.go
@@ -408,6 +408,13 @@ func (p *ChainPorter) waitForTransferTxConf(pkg *sendPackage) error {
408
case confEvent = <-confNtfn.Confirmed:
409
log.Debugf("Got chain confirmation: %v", confEvent.Tx.TxHash())
410
pkg.TransferTxConfEvent = confEvent
411
+
412
+ // If the anchoring tx block hash is given, we'll also store it
413
+ // in the outbound package.
414
+ pkg.OutboundPkg.AnchorTxBlockHash = fn.MaybeSome(
415
+ confEvent.BlockHash,
416
+ )
417
418
pkg.SendState = SendStateStoreProofs
419
420
case err := <-errChan:
0 commit comments