build: bump tapd to v0.6.1 and lnd to v0.19.2-beta

This commit is contained in:
Andras Banki-Horvath 2025-07-16 18:53:57 +02:00
parent 26b38cf874
commit 31f996cb37
No known key found for this signature in database
GPG key ID: 80E5375C094198D8
5 changed files with 27 additions and 27 deletions

View file

@ -172,7 +172,7 @@ func (m *MockChainNotifier) RawClientWithMacAuth(
func (m *MockChainNotifier) RegisterConfirmationsNtfn(ctx context.Context,
txid *chainhash.Hash, pkScript []byte, numConfs, heightHint int32,
options ...lndclient.NotifierOption) (chan *chainntnfs.TxConfirmation,
_ ...lndclient.NotifierOption) (chan *chainntnfs.TxConfirmation,
chan error, error) {
args := m.Called(ctx, txid, pkScript, numConfs, heightHint)
@ -187,7 +187,8 @@ func (m *MockChainNotifier) RegisterBlockEpochNtfn(ctx context.Context) (
}
func (m *MockChainNotifier) RegisterSpendNtfn(ctx context.Context,
outpoint *wire.OutPoint, pkScript []byte, heightHint int32) (
outpoint *wire.OutPoint, pkScript []byte, heightHint int32,
_ ...lndclient.NotifierOption) (
chan *chainntnfs.SpendDetail, chan error, error) {
args := m.Called(ctx, pkScript, heightHint)