Skip to content

Commit be69653

Browse files
committed
sweepbatcher/store: remove unused field clock
1 parent ce4a4d9 commit be69653

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

sweepbatcher/store.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import (
1111
"github.com/btcsuite/btcd/wire"
1212
"github.com/lightninglabs/loop/loopdb"
1313
"github.com/lightninglabs/loop/loopdb/sqlc"
14-
"github.com/lightningnetwork/lnd/clock"
1514
"github.com/lightningnetwork/lnd/lntypes"
1615
)
1716

@@ -72,15 +71,13 @@ type SQLStore struct {
7271
baseDb BaseDB
7372

7473
network *chaincfg.Params
75-
clock clock.Clock
7674
}
7775

7876
// NewSQLStore creates a new SQLStore.
7977
func NewSQLStore(db BaseDB, network *chaincfg.Params) *SQLStore {
8078
return &SQLStore{
8179
baseDb: db,
8280
network: network,
83-
clock: clock.NewDefaultClock(),
8481
}
8582
}
8683

0 commit comments

Comments
 (0)