mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-27 14:11:04 +02:00
multi: new bitcoind rpcpolling backend for itests
This commit is contained in:
23
lntest/bitcoind_rpcpolling.go
Normal file
23
lntest/bitcoind_rpcpolling.go
Normal file
@@ -0,0 +1,23 @@
|
||||
//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)
|
||||
}
|
Reference in New Issue
Block a user