Commit a3ea8eca authored by erio's avatar erio
Browse files

fix(wire): add ChannelMonitorRunner.Stop() to cleanup steps in wire_gen.go

parent 49787269
......@@ -457,6 +457,12 @@ func provideCleanup(
}
return nil
}},
{"ChannelMonitorRunner", func() error {
if channelMonitorRunner != nil {
channelMonitorRunner.Stop()
}
return nil
}},
}
infraSteps := []cleanupStep{
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment