faraday/itest/log.go
Joost Jager 3aad15ca27
itest: add itest setup with two lnd nodes and a single faraday instance
This commit adds an itest setup which can be used to test faraday's rpc.
The setup is largely copied from our existing loop server itests.
2020-08-12 11:42:09 +02:00

10 lines
150 B
Go

package itest
import (
"github.com/btcsuite/btclog"
)
var (
backend = btclog.NewBackend(newPrefixStdout("itest"))
log = backend.Logger("")
)