mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-07-14 23:22:35 +02:00
chainntnfs: switch debug tag to dev
This avoids collisions with the logging level tags
This commit is contained in:
15
chainntnfs/interface_dev.go
Normal file
15
chainntnfs/interface_dev.go
Normal file
@ -0,0 +1,15 @@
|
||||
// +build dev
|
||||
|
||||
package chainntnfs
|
||||
|
||||
import "github.com/btcsuite/btcd/chaincfg/chainhash"
|
||||
|
||||
// TestChainNotifier enables the use of methods that are only present during
|
||||
// testing for ChainNotifiers.
|
||||
type TestChainNotifier interface {
|
||||
ChainNotifier
|
||||
|
||||
// UnsafeStart enables notifiers to start up with a specific best block.
|
||||
// Used for testing.
|
||||
UnsafeStart(int32, *chainhash.Hash, int32, func() error) error
|
||||
}
|
Reference in New Issue
Block a user