mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-20 02:27:21 +01:00
20 lines
628 B
Go
20 lines
628 B
Go
package bitcoind_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
lnwallettest "github.com/lightningnetwork/lnd/lnwallet/test"
|
|
)
|
|
|
|
// TestLightningWalletBitcoindZMQ tests LightningWallet powered by bitcoind,
|
|
// using its ZMQ interface, against our suite of interface tests.
|
|
func TestLightningWalletBitcoindZMQ(t *testing.T) {
|
|
lnwallettest.TestLightningWallet(t, "bitcoind")
|
|
}
|
|
|
|
// 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")
|
|
}
|