chainntnfs/bitcoind: add bool to RegisterSpendNtfn

This commit is contained in:
Johan T. Halseth 2018-03-29 15:30:36 +02:00
parent 5283b6d210
commit 9e7e023194
No known key found for this signature in database
GPG Key ID: 15BAADA29DA20D26

@ -486,7 +486,7 @@ type spendCancel struct {
// outpoint has been detected, the details of the spending event will be sent
// across the 'Spend' channel.
func (b *BitcoindNotifier) RegisterSpendNtfn(outpoint *wire.OutPoint,
_ uint32) (*chainntnfs.SpendEvent, error) {
_ uint32, _ bool) (*chainntnfs.SpendEvent, error) {
ntfn := &spendNotification{
targetOutpoint: outpoint,