From ad68009ec5af938f6260cdd07d7c1c80077142d7 Mon Sep 17 00:00:00 2001 From: Conner Fromknecht Date: Wed, 18 Jul 2018 14:26:33 -0700 Subject: [PATCH] chancloser: remove error returned from unregisterChannel --- chancloser.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chancloser.go b/chancloser.go index bce0e8a5..903d1fa9 100644 --- a/chancloser.go +++ b/chancloser.go @@ -73,7 +73,7 @@ type chanCloseCfg struct { // unregisterChannel is a function closure that allows the // channelCloser to re-register a channel. Once this has been done, no // further HTLC's should be routed through the channel. - unregisterChannel func(lnwire.ChannelID) error + unregisterChannel func(lnwire.ChannelID) // broadcastTx broadcasts the passed transaction to the network. broadcastTx func(*wire.MsgTx) error