mirror of
https://github.com/lightninglabs/loop
synced 2024-11-08 01:10:29 +00:00
ad7cdc8ed2
Since the code for creating and using a macaroon service is the same for multiple projects (pool, loop, litd etc), the code has been unified in lndclient. So this commit removes the macaroon service code and instead uses the lndclient code.
13 lines
304 B
Go
13 lines
304 B
Go
//go:build !dev
|
|
// +build !dev
|
|
|
|
package loopd
|
|
|
|
import "gopkg.in/macaroon-bakery.v2/bakery"
|
|
|
|
var debugRequiredPermissions = map[string][]bakery.Op{}
|
|
|
|
// registerDebugServer is our default debug server registration function, which
|
|
// excludes debug functionality.
|
|
func (d *Daemon) registerDebugServer() {}
|