Merge pull request #6730 from Roasbeef/notifier-optional-block

chainntfns: add new option for conf notifications to send block
This commit is contained in:
Oliver Gugger
2022-08-10 13:52:49 +02:00
committed by GitHub
18 changed files with 392 additions and 194 deletions

View File

@@ -57,7 +57,8 @@ func (n *NoChainBackend) RelayFeePerKW() chainfee.SatPerKWeight {
}
func (n *NoChainBackend) RegisterConfirmationsNtfn(*chainhash.Hash, []byte,
uint32, uint32) (*chainntnfs.ConfirmationEvent, error) {
uint32, uint32,
...chainntnfs.NotifierOption) (*chainntnfs.ConfirmationEvent, error) {
return nil, errNotImplemented
}