multi: new bitcoind rpcpolling backend for itests

This commit is contained in:
Elle Mouton
2022-03-10 10:32:32 +00:00
parent 7509af1a70
commit e789107e1f
7 changed files with 62 additions and 18 deletions

View File

@@ -1,5 +1,5 @@
//go:build bitcoind && !notxindex
// +build bitcoind,!notxindex
//go:build bitcoind && !notxindex && !rpcpolling
// +build bitcoind,!notxindex,!rpcpolling
package lntest
@@ -19,5 +19,5 @@ func NewBackend(miner string, netParams *chaincfg.Params) (
"-disablewallet",
}
return newBackend(miner, netParams, extraArgs)
return newBackend(miner, netParams, extraArgs, false)
}