lnwallet: add label transaction to WalletController interface

This commit is contained in:
carla
2020-05-25 08:38:05 +02:00
parent 7f1a450a7f
commit baeef63aab
3 changed files with 23 additions and 0 deletions

View File

@ -326,6 +326,13 @@ func (m *mockWalletController) PublishTransaction(tx *wire.MsgTx, _ string) erro
m.publishedTransactions <- tx
return nil
}
func (m *mockWalletController) LabelTransaction(_ chainhash.Hash, _ string,
_ bool) error {
return nil
}
func (*mockWalletController) SubscribeTransactions() (lnwallet.TransactionSubscription, error) {
return nil, nil
}