mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-05-24 15:56:42 +00:00
12 lines
374 B
Go
12 lines
374 B
Go
package testapi
|
|
|
|
import "github.com/kaspanet/kaspad/domain/consensus/model"
|
|
|
|
// TestReachabilityManager adds to the main ReachabilityManager methods required by tests
|
|
type TestReachabilityManager interface {
|
|
model.ReachabilityManager
|
|
SetReachabilityReindexWindow(reindexWindow uint64)
|
|
SetReachabilityReindexSlack(reindexSlack uint64)
|
|
ReachabilityReindexSlack() uint64
|
|
}
|