2013-07-18 16:49:28 +02:00
|
|
|
// Copyright (c) 2013 Conformal Systems LLC.
|
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
/*
|
|
|
|
This test file is part of the btcchain package rather than than the
|
|
|
|
btcchain_test package so it can bridge access to the internals to properly test
|
|
|
|
cases which are either not possible or can't reliably be tested via the public
|
|
|
|
interface. The functions are only exported while the tests are being run.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package btcchain
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/conformal/btcutil"
|
2013-07-18 17:06:35 +02:00
|
|
|
"time"
|
2013-07-18 16:49:28 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// TstCheckBlockSanity makes the internal checkBlockSanity function available to
|
|
|
|
// the test package.
|
2013-07-24 18:37:45 +02:00
|
|
|
func (b *BlockChain) TstCheckBlockSanity(block *btcutil.Block) error {
|
|
|
|
return b.checkBlockSanity(block)
|
2013-07-18 16:49:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// TstSetCoinbaseMaturity makes the ability to set the coinbase maturity
|
|
|
|
// available to the test package.
|
|
|
|
func TstSetCoinbaseMaturity(maturity int64) {
|
|
|
|
coinbaseMaturity = maturity
|
|
|
|
}
|
2013-07-18 17:06:35 +02:00
|
|
|
|
|
|
|
// TstTimeSorter makes the internal timeSorter type available to the test
|
|
|
|
// package.
|
|
|
|
func TstTimeSorter(times []time.Time) timeSorter {
|
|
|
|
return timeSorter(times)
|
|
|
|
}
|