1
0
Fork 0
mirror of https://github.com/lightningnetwork/lnd.git synced 2025-03-14 19:40:54 +01:00
lnd/lntest/bitcoind_notxindex.go
2024-10-14 16:10:18 +02:00

21 lines
501 B
Go

//go:build bitcoind && notxindex && !rpcpolling
// +build bitcoind,notxindex,!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{
"-regtest",
"-disablewallet",
}
return newBackend(miner, netParams, extraArgs, false)
}