From ec2ed79f48fdeb19d2908e2f089c21419f3cae80 Mon Sep 17 00:00:00 2001 From: sputn1ck Date: Wed, 15 Mar 2023 22:04:59 +0100 Subject: [PATCH] loopd: fix macaroons typo This commit fixes a typo which leads to a broken macaroon store. --- loopd/daemon.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loopd/daemon.go b/loopd/daemon.go index 3bcc0ea..803ab92 100644 --- a/loopd/daemon.go +++ b/loopd/daemon.go @@ -390,7 +390,7 @@ func (d *Daemon) initialize(withMacaroonService bool) error { } rks, db, err := lndclient.NewBoltMacaroonStore( - d.cfg.DataDir, "macarooons.db", loopdb.DefaultLoopDBTimeout, + d.cfg.DataDir, "macaroons.db", loopdb.DefaultLoopDBTimeout, ) if err != nil { return err