lnd: move fundingBroadcastHeight to fundingmanager_test.go

This commit is contained in:
eugene 2020-08-18 14:37:51 -04:00
parent c7cbacc35b
commit 4ff03afee0
2 changed files with 3 additions and 3 deletions

@ -55,6 +55,9 @@ const (
// maxPending is the maximum number of channels we allow opening to the
// same peer in the max pending channels test.
maxPending = 4
// A dummy value to use for the funding broadcast height.
fundingBroadcastHeight = 123
)
var (

@ -9,9 +9,6 @@ import (
"github.com/lightningnetwork/lnd/lntest/mock"
)
// The block height returned by the mock BlockChainIO's GetBestBlock.
const fundingBroadcastHeight = 123
// mockSpendNotifier extends the mock.ChainNotifier so that spend
// notifications can be triggered and delivered to subscribers.
type mockSpendNotifier struct {