2020-12-10 15:51:41 -08:00
|
|
|
package bitcoind_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
lnwallettest "github.com/lightningnetwork/lnd/lnwallet/test"
|
|
|
|
)
|
|
|
|
|
2022-05-04 11:23:58 +02:00
|
|
|
// TestLightningWalletBitcoindZMQ tests LightningWallet powered by bitcoind,
|
|
|
|
// using its ZMQ interface, against our suite of interface tests.
|
|
|
|
func TestLightningWalletBitcoindZMQ(t *testing.T) {
|
2020-12-10 15:51:41 -08:00
|
|
|
lnwallettest.TestLightningWallet(t, "bitcoind")
|
|
|
|
}
|
2022-05-04 11:23:58 +02:00
|
|
|
|
|
|
|
// TestLightningWalletBitcoindRPCPolling tests LightningWallet powered by
|
|
|
|
// bitcoind, using its RPC interface, against our suite of interface tests.
|
|
|
|
func TestLightningWalletBitcoindRPCPolling(t *testing.T) {
|
|
|
|
lnwallettest.TestLightningWallet(t, "bitcoind-rpc-polling")
|
|
|
|
}
|