mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 01:43:16 +01:00
24 lines
501 B
Go
24 lines
501 B
Go
//go:build bitcoind && rpcpolling
|
|
// +build bitcoind,rpcpolling
|
|
|
|
package lntest
|
|
|
|
import (
|
|
"github.com/btcsuite/btcd/chaincfg"
|
|
)
|
|
|
|
// NewBackend starts a bitcoind node without the txindex enabled and returns a
|
|
// BitoindBackendConfig 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, true)
|
|
}
|