43c2031fa8
To prepare for running multiple tests on bitcoind with different options each time, we extract the common code into its own file.
23 lines
448 B
Go
23 lines
448 B
Go
// +build bitcoind
|
|
|
|
package lntest
|
|
|
|
import (
|
|
"github.com/btcsuite/btcd/chaincfg"
|
|
)
|
|
|
|
// NewBackend starts a bitcoind node with the txindex enabled and returns a
|
|
// BitcoindBackendConfig for that node.
|
|
func NewBackend(miner string, netParams *chaincfg.Params) (
|
|
*BitcoindBackendConfig, func() error, error) {
|
|
|
|
extraArgs := []string{
|
|
"-debug",
|
|
"-regtest",
|
|
"-txindex",
|
|
"-disablewallet",
|
|
}
|
|
|
|
return newBackend(miner, netParams, extraArgs)
|
|
}
|