lntest: execute locally compiled binary

This commit is contained in:
Conner Fromknecht 2018-03-28 23:13:43 -07:00
parent 47aa56aad9
commit c1389a5388
No known key found for this signature in database
GPG Key ID: 39DE78FBE6ACB0EF

@ -244,7 +244,7 @@ func (hn *HarnessNode) start(lndError chan<- error) error {
args := hn.cfg.genArgs()
args = append(args, fmt.Sprintf("--profile=%d", 9000+hn.NodeID))
hn.cmd = exec.Command("lnd", args...)
hn.cmd = exec.Command("./lnd", args...)
// Redirect stderr output to buffer
var errb bytes.Buffer