rpc

package
v0.16.3-beta Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 5, 2023 License: MIT Imports: 17 Imported by: 0

Documentation

Index

Constants

View Source
const (
	DefaultTimeout = wait.DefaultTimeout
)

Variables

This section is empty.

Functions

This section is empty.

Types

type HarnessRPC

type HarnessRPC struct {
	*testing.T

	LN               lnrpc.LightningClient
	WalletUnlocker   lnrpc.WalletUnlockerClient
	Invoice          invoicesrpc.InvoicesClient
	Signer           signrpc.SignerClient
	Router           routerrpc.RouterClient
	WalletKit        walletrpc.WalletKitClient
	Watchtower       watchtowerrpc.WatchtowerClient
	WatchtowerClient wtclientrpc.WatchtowerClientClient
	State            lnrpc.StateClient
	ChainClient      chainrpc.ChainNotifierClient
	ChainKit         chainrpc.ChainKitClient
	NeutrinoKit      neutrinorpc.NeutrinoKitClient
	Peer             peersrpc.PeersClient

	// Name is the HarnessNode's name.
	Name string
	// contains filtered or unexported fields
}

HarnessRPC wraps all lnd's RPC clients into a single struct for easier access.

func NewHarnessRPC

func NewHarnessRPC(ctxt context.Context, t *testing.T, c *grpc.ClientConn,
	name string) *HarnessRPC

NewHarnessRPC creates a new HarnessRPC with its own context inherted from the pass context.

func (*HarnessRPC) AbandonChannel

AbandonChannel makes a RPC call to AbandonChannel and asserts.

func (*HarnessRPC) AddHoldInvoice

AddHoldInvoice adds a hold invoice for the given node and asserts.

func (*HarnessRPC) AddInvoice

func (h *HarnessRPC) AddInvoice(req *lnrpc.Invoice) *lnrpc.AddInvoiceResponse

AddInvoice adds a invoice for the given node and asserts.

func (*HarnessRPC) AddPeer

AddPeer makes an RPC call to neutrino kit client's AddPeer and asserts.

func (*HarnessRPC) AddTower

AddTower makes a RPC call to the WatchtowerClient of the given node and asserts.

func (*HarnessRPC) BatchOpenChannel

BatchOpenChannel makes a RPC call to BatchOpenChannel and asserts.

func (*HarnessRPC) BatchOpenChannelAssertErr

func (h *HarnessRPC) BatchOpenChannelAssertErr(
	req *lnrpc.BatchOpenChannelRequest) error

BatchOpenChannelAssertErr makes a RPC call to BatchOpenChannel and asserts there's an error returned.

func (*HarnessRPC) BuildRoute

BuildRoute makes a RPC call to the node's RouterClient and asserts.

func (*HarnessRPC) BumpFee

BumpFee makes a RPC call to the node's WalletKitClient and asserts.

func (*HarnessRPC) CancelInvoice

func (h *HarnessRPC) CancelInvoice(
	payHash []byte) *invoicesrpc.CancelInvoiceResp

CancelInvoice cancels a given invoice and asserts.

func (*HarnessRPC) ChangePassword

ChangePassword makes a RPC request to WalletUnlocker and asserts there's no error.

func (*HarnessRPC) ChannelAcceptor

func (h *HarnessRPC) ChannelAcceptor() (AcceptorClient, context.CancelFunc)

ChannelAcceptor makes a RPC call to the node's ChannelAcceptor and asserts.

func (*HarnessRPC) ChannelBalance

func (h *HarnessRPC) ChannelBalance() *lnrpc.ChannelBalanceResponse

ChannelBalance gets the channel balance and asserts.

func (*HarnessRPC) CloseChannel

func (h *HarnessRPC) CloseChannel(
	req *lnrpc.CloseChannelRequest) CloseChanClient

CloseChannel makes a rpc call to LightningClient and returns the close channel client.

func (*HarnessRPC) ClosedChannels

ClosedChannels makes a RPC call to node's ClosedChannels and asserts.

func (*HarnessRPC) ComputeInputScript

func (h *HarnessRPC) ComputeInputScript(
	req *signrpc.SignReq) *signrpc.InputScriptResp

ComputeInputScript makes a RPC call to the node's SignerClient and asserts.

func (*HarnessRPC) ConnectPeer

ConnectPeer makes a RPC call to ConnectPeer and asserts there's no error.

func (*HarnessRPC) ConnectPeerAssertErr

func (h *HarnessRPC) ConnectPeerAssertErr(req *lnrpc.ConnectPeerRequest) error

ConnectPeerAssertErr makes a RPC call to ConnectPeer and asserts an error returned.

func (*HarnessRPC) DecodePayReq

func (h *HarnessRPC) DecodePayReq(req string) *lnrpc.PayReq

DecodePayReq makes a RPC call to node's DecodePayReq and asserts.

func (*HarnessRPC) DeleteAllPayments

func (h *HarnessRPC) DeleteAllPayments()

DeleteAllPayments makes a RPC call to the node's DeleteAllPayments and asserts.

func (*HarnessRPC) DeriveKey

func (h *HarnessRPC) DeriveKey(kl *signrpc.KeyLocator) *signrpc.KeyDescriptor

DeriveKey makes a RPC call to the DeriveKey and asserts.

func (*HarnessRPC) DeriveNextKey

func (h *HarnessRPC) DeriveNextKey(
	req *walletrpc.KeyReq) *signrpc.KeyDescriptor

DeriveNextKey makes a RPC call to the DeriveNextKey and asserts.

func (*HarnessRPC) DeriveSharedKey

func (h *HarnessRPC) DeriveSharedKey(
	req *signrpc.SharedKeyRequest) *signrpc.SharedKeyResponse

DeriveSharedKey makes a RPC call to the node's SignerClient and asserts.

func (*HarnessRPC) DeriveSharedKeyErr

func (h *HarnessRPC) DeriveSharedKeyErr(req *signrpc.SharedKeyRequest) error

DeriveSharedKeyErr makes a RPC call to the node's SignerClient and asserts there is an error.

func (*HarnessRPC) DescribeGraph

func (h *HarnessRPC) DescribeGraph(
	req *lnrpc.ChannelGraphRequest) *lnrpc.ChannelGraph

DescribeGraph makes a RPC call to the node's DescribeGraph and asserts. It takes a bool to indicate whether we want to include private edges or not.

func (*HarnessRPC) DisconnectPeer

func (h *HarnessRPC) DisconnectPeer(
	pubkey string) *lnrpc.DisconnectPeerResponse

DisconnectPeer calls the DisconnectPeer RPC on a given node with a specified public key string and asserts there's no error.

func (*HarnessRPC) ExportAllChanBackups

func (h *HarnessRPC) ExportAllChanBackups() *lnrpc.ChanBackupSnapshot

ExportAllChanBackups makes a RPC call to the node's ExportAllChannelBackups and asserts.

func (*HarnessRPC) ExportChanBackup

func (h *HarnessRPC) ExportChanBackup(
	chanPoint *lnrpc.ChannelPoint) *lnrpc.ChannelBackup

ExportChanBackup makes a RPC call to the node's ExportChannelBackup and asserts.

func (*HarnessRPC) FinalizePsbt

FinalizePsbt makes a RPC call to node's FinalizePsbt and asserts.

func (*HarnessRPC) ForwardingHistory

ForwardingHistory makes a RPC call to the node's ForwardingHistory and asserts.

func (*HarnessRPC) FundPsbt

FundPsbt makes a RPC call to node's FundPsbt and asserts.

func (*HarnessRPC) FundingStateStep

func (h *HarnessRPC) FundingStateStep(
	msg *lnrpc.FundingTransitionMsg) *lnrpc.FundingStateStepResp

FundingStateStep makes a RPC call to FundingStateStep and asserts.

func (*HarnessRPC) FundingStateStepAssertErr

func (h *HarnessRPC) FundingStateStepAssertErr(m *lnrpc.FundingTransitionMsg)

FundingStateStepAssertErr makes a RPC call to FundingStateStep and asserts there's an error.

func (*HarnessRPC) GenSeed

GenSeed makes a RPC request to WalletUnlocker and asserts there's no error.

func (*HarnessRPC) GetBestBlock

GetBestBlock makes an RPC call to chain kit client's GetBestBlock and asserts.

func (*HarnessRPC) GetBlock

GetBlock makes an RPC call to chain kit client's GetBlock and asserts.

func (*HarnessRPC) GetBlockHash

GetBlockHash makes an RPC call to chain kit client's GetBlockHash and asserts.

func (*HarnessRPC) GetCFilter

GetCFilter makes an RPC call to neutrino kit client's GetCFilter and asserts.

func (*HarnessRPC) GetChanInfo

func (h *HarnessRPC) GetChanInfo(
	req *lnrpc.ChanInfoRequest) *lnrpc.ChannelEdge

GetChanInfo makes a RPC call to the node's GetChanInfo and returns the response.

func (*HarnessRPC) GetInfo

func (h *HarnessRPC) GetInfo() *lnrpc.GetInfoResponse

GetInfo calls the GetInfo RPC on a given node and asserts there's no error.

func (*HarnessRPC) GetInfoWatchtower

func (h *HarnessRPC) GetInfoWatchtower() *watchtowerrpc.GetInfoResponse

GetInfoWatchtower makes a RPC call to the watchtower of the given node and asserts.

func (*HarnessRPC) GetMissionControlConfig

func (h *HarnessRPC) GetMissionControlConfig() *routerrpc.GetMissionControlConfigResponse

GetMissionControlConfig makes a RPC call to the node's GetMissionControlConfig and asserts.

func (*HarnessRPC) GetRecoveryInfo

GetRecoveryInfo uses the specified node to make a RPC call to GetRecoveryInfo and asserts.

func (*HarnessRPC) GetTowerInfo

GetTowerInfo makes an RPC call to the watchtower client of the given node and asserts.

func (*HarnessRPC) GetTransactions

func (h *HarnessRPC) GetTransactions(
	req *lnrpc.GetTransactionsRequest) *lnrpc.TransactionDetails

GetTransactions makes a RPC call to GetTransactions and asserts.

func (*HarnessRPC) HtlcInterceptor

func (h *HarnessRPC) HtlcInterceptor() (InterceptorClient, context.CancelFunc)

HtlcInterceptor makes a RPC call to the node's RouterClient and asserts.

func (*HarnessRPC) ImportAccount

ImportAccount makes a RPC call to the node's WalletKitClient and asserts.

func (*HarnessRPC) ImportPublicKey

ImportPublicKey makes a RPC call to the node's WalletKitClient and asserts.

func (*HarnessRPC) ImportTapscript

ImportTapscript makes a RPC call to the node's WalletKitClient and asserts.

func (*HarnessRPC) InitWallet

InitWallet makes a RPC request to WalletUnlocker and asserts there's no error.

func (*HarnessRPC) LabelTransaction

func (h *HarnessRPC) LabelTransaction(req *walletrpc.LabelTransactionRequest)

LabelTransaction makes a RPC call to the node's LabelTransaction and asserts no error is returned.

func (*HarnessRPC) LabelTransactionAssertErr

func (h *HarnessRPC) LabelTransactionAssertErr(
	req *walletrpc.LabelTransactionRequest) error

LabelTransactionAssertErr makes a RPC call to the node's LabelTransaction and asserts an error is returned. It then returns the error.

func (*HarnessRPC) ListAccounts

ListAccounts makes a RPC call to the node's WalletKitClient and asserts.

func (*HarnessRPC) ListAddresses

ListAddresses makes a RPC call to the ListAddresses and asserts.

func (*HarnessRPC) ListChannels

ListChannels list the channels for the given node and asserts it's successful.

func (*HarnessRPC) ListInvoices

ListInvoices list the node's invoice using the request and asserts.

func (*HarnessRPC) ListPayments

ListPayments lists the node's payments and asserts.

func (*HarnessRPC) ListPeers

func (h *HarnessRPC) ListPeers() *lnrpc.ListPeersResponse

ListPeers makes a RPC call to the node's ListPeers and asserts.

func (*HarnessRPC) ListSweeps

func (h *HarnessRPC) ListSweeps(verbose bool) *walletrpc.ListSweepsResponse

ListSweeps makes a ListSweeps RPC call to the node's WalletKit client.

func (*HarnessRPC) ListUnspent

FinalizePsbt makes a RPC call to node's ListUnspent and asserts.

func (*HarnessRPC) LookupHtlcResolution

LookupHtlcResolution makes a RPC call to the node's LookupHtlcResolution and returns the response.

func (*HarnessRPC) LookupHtlcResolutionAssertErr

func (h *HarnessRPC) LookupHtlcResolutionAssertErr(
	req *lnrpc.LookupHtlcResolutionRequest) error

LookupHtlcResolutionAssertErr makes a RPC call to the node's LookupHtlcResolution and asserts an RPC error is returned.

func (*HarnessRPC) LookupInvoice

func (h *HarnessRPC) LookupInvoice(rHash []byte) *lnrpc.Invoice

LookupInvoice queries the node's invoices using the specified rHash.

func (*HarnessRPC) LookupInvoiceV2

func (h *HarnessRPC) LookupInvoiceV2(
	req *invoicesrpc.LookupInvoiceMsg) *lnrpc.Invoice

LookupInvoiceV2 queries the node's invoices using the invoice client's LookupInvoiceV2.

func (*HarnessRPC) MakeOutpoint

func (h *HarnessRPC) MakeOutpoint(cp *lnrpc.ChannelPoint) wire.OutPoint

MakeOutpoint returns the outpoint of the channel's funding transaction.

func (*HarnessRPC) MuSig2Cleanup

MuSig2Cleanup makes a RPC call to the node's SignerClient and asserts.

func (*HarnessRPC) MuSig2CombineKeys

MuSig2CombineKeys makes a RPC call to the node's SignerClient and asserts.

func (*HarnessRPC) MuSig2CombineKeysErr

func (h *HarnessRPC) MuSig2CombineKeysErr(
	req *signrpc.MuSig2CombineKeysRequest) error

MuSig2CombineKeysErr makes an RPC call to the node's SignerClient and asserts an error is returned.

func (*HarnessRPC) MuSig2CombineSig

MuSig2CombineSig makes a RPC call to the node's SignerClient and asserts.

func (*HarnessRPC) MuSig2CreateSession

func (h *HarnessRPC) MuSig2CreateSession(
	req *signrpc.MuSig2SessionRequest) *signrpc.MuSig2SessionResponse

MuSig2CreateSession makes a RPC call to the node's SignerClient and asserts.

func (*HarnessRPC) MuSig2CreateSessionErr

func (h *HarnessRPC) MuSig2CreateSessionErr(
	req *signrpc.MuSig2SessionRequest) error

MuSig2CreateSessionErr makes an RPC call to the node's SignerClient and asserts an error is returned.

func (*HarnessRPC) MuSig2RegisterNonces

MuSig2RegisterNonces makes a RPC call to the node's SignerClient and asserts.

func (*HarnessRPC) MuSig2Sign

MuSig2Sign makes a RPC call to the node's SignerClient and asserts.

func (*HarnessRPC) MuSig2SignErr

func (h *HarnessRPC) MuSig2SignErr(req *signrpc.MuSig2SignRequest) error

MuSig2SignErr makes a RPC call to the node's SignerClient and asserts an error is returned.

func (*HarnessRPC) NewAddress

NewAddress makes a RPC call to NewAddress and asserts.

func (*HarnessRPC) NoError

func (h *HarnessRPC) NoError(err error, operation string)

NoError is a helper method to format the error message used in calling RPCs.

func (*HarnessRPC) OpenChannel

func (h *HarnessRPC) OpenChannel(req *lnrpc.OpenChannelRequest) OpenChanClient

OpenChannel makes a rpc call to LightningClient and returns the open channel client.

func (*HarnessRPC) PendingChannels

func (h *HarnessRPC) PendingChannels() *lnrpc.PendingChannelsResponse

PendingChannels makes a RPC request to PendingChannels and asserts there's no error.

func (*HarnessRPC) PendingSweeps

func (h *HarnessRPC) PendingSweeps() *walletrpc.PendingSweepsResponse

PendingSweeps makes a RPC call to the node's WalletKitClient and asserts.

func (*HarnessRPC) PublishTransaction

func (h *HarnessRPC) PublishTransaction(
	req *walletrpc.Transaction) *walletrpc.PublishResponse

PublishTransaction makes an RPC call to the node's WalletKitClient and asserts.

func (*HarnessRPC) QueryProbability

QueryProbability makes a RPC call to the node's QueryProbability and asserts.

func (*HarnessRPC) QueryRoutes

QueryRoutes makes a RPC call to QueryRoutes and asserts.

func (*HarnessRPC) RegisterConfirmationsNtfn

func (h *HarnessRPC) RegisterConfirmationsNtfn(
	req *chainrpc.ConfRequest) ConfNtfnClient

RegisterConfirmationsNtfn creates a notification client to watch a given transaction being confirmed.

func (*HarnessRPC) RegisterRPCMiddleware

func (h *HarnessRPC) RegisterRPCMiddleware() (MiddlewareClient,
	context.CancelFunc)

RegisterRPCMiddleware makes a RPC call to the node's RegisterRPCMiddleware and asserts. It also returns a cancel context which can cancel the context used by the client.

func (*HarnessRPC) RegisterSpendNtfn

func (h *HarnessRPC) RegisterSpendNtfn(req *chainrpc.SpendRequest) SpendClient

RegisterSpendNtfn creates a notification client to watch a given transaction being spent.

func (*HarnessRPC) ResetMissionControl

func (h *HarnessRPC) ResetMissionControl()

ResetMissionControl makes a RPC call to the node's ResetMissionControl and asserts.

func (*HarnessRPC) RestoreChanBackups

RestoreChanBackups makes a RPC call to the node's RestoreChannelBackups and asserts.

func (*HarnessRPC) SendCoins

SendCoins sends a given amount of money to the specified address from the passed node.

func (*HarnessRPC) SendCoinsAssertErr

func (h *HarnessRPC) SendCoinsAssertErr(req *lnrpc.SendCoinsRequest)

SendCoinsAssertErr sends a given amount of money to the specified address from the passed node and asserts an error has returned.

func (*HarnessRPC) SendCustomMessage

SendCustomMessage makes a RPC call to the node's SendCustomMessage and returns the response.

func (*HarnessRPC) SendOutputs

SendOutputs makes a RPC call to the node's WalletKitClient and asserts.

func (*HarnessRPC) SendPayment

func (h *HarnessRPC) SendPayment(
	req *routerrpc.SendPaymentRequest) PaymentClient

SendPayment sends a payment using the given node and payment request. It also asserts the payment being sent successfully.

func (*HarnessRPC) SendToRoute

func (h *HarnessRPC) SendToRoute() SendToRouteClient

SendToRoute makes a RPC call to SendToRoute and asserts.

func (*HarnessRPC) SendToRouteSync

func (h *HarnessRPC) SendToRouteSync(
	req *lnrpc.SendToRouteRequest) *lnrpc.SendResponse

SendToRouteSync makes a RPC call to SendToRouteSync and asserts.

func (*HarnessRPC) SendToRouteV2

func (h *HarnessRPC) SendToRouteV2(
	req *routerrpc.SendToRouteRequest) *lnrpc.HTLCAttempt

SendToRouteV2 makes a RPC call to SendToRouteV2 and asserts.

func (*HarnessRPC) SetMissionControlConfig

func (h *HarnessRPC) SetMissionControlConfig(
	config *routerrpc.MissionControlConfig)

SetMissionControlConfig makes a RPC call to the node's SetMissionControlConfig and asserts.

func (*HarnessRPC) SetMissionControlConfigAssertErr

func (h *HarnessRPC) SetMissionControlConfigAssertErr(
	config *routerrpc.MissionControlConfig)

SetMissionControlConfigAssertErr makes a RPC call to the node's SetMissionControlConfig and asserts that we error.

func (*HarnessRPC) SettleInvoice

func (h *HarnessRPC) SettleInvoice(
	preimage []byte) *invoicesrpc.SettleInvoiceResp

SettleInvoice settles a given invoice and asserts.

func (*HarnessRPC) SignMessage

func (h *HarnessRPC) SignMessage(msg []byte) *lnrpc.SignMessageResponse

SignMessage makes a RPC call to node's SignMessage and asserts.

func (*HarnessRPC) SignMessageSigner

func (h *HarnessRPC) SignMessageSigner(
	req *signrpc.SignMessageReq) *signrpc.SignMessageResp

SignMessageSigner makes a RPC call to the node's SignerClient and asserts.

NOTE: there's already `SignMessage` in `h.LN`.

func (*HarnessRPC) SignMessageWithAddr

func (h *HarnessRPC) SignMessageWithAddr(
	req *walletrpc.SignMessageWithAddrRequest) SignReq

SignMessageWithAddr makes a RPC call to the SignMessageWithAddr and asserts.

func (*HarnessRPC) SignOutputRaw

func (h *HarnessRPC) SignOutputRaw(req *signrpc.SignReq) *signrpc.SignResp

SignOutputRaw makes a RPC call to the node's SignerClient and asserts.

func (*HarnessRPC) SignOutputRawErr

func (h *HarnessRPC) SignOutputRawErr(req *signrpc.SignReq) error

SignOutputRawErr makes a RPC call to the node's SignerClient and asserts an error is returned.

func (*HarnessRPC) SignPsbt

SignPsbt makes a RPC call to the node's WalletKitClient and asserts.

func (*HarnessRPC) SignPsbtErr

func (h *HarnessRPC) SignPsbtErr(req *walletrpc.SignPsbtRequest) error

SignPsbtErr makes a RPC call to the node's WalletKitClient and asserts an error returned.

func (*HarnessRPC) Status

Status makes an RPC call to neutrino kit client's Status and asserts.

func (*HarnessRPC) SubscribeChannelBackups

func (h *HarnessRPC) SubscribeChannelBackups() BackupSubscriber

SubscribeChannelBackups creates a client to listen to channel backup stream.

func (*HarnessRPC) SubscribeChannelEvents

func (h *HarnessRPC) SubscribeChannelEvents() ChannelEventsClient

SubscribeChannelEvents creates a subscription client for channel events and asserts its creation.

func (*HarnessRPC) SubscribeCustomMessages

func (h *HarnessRPC) SubscribeCustomMessages() (CustomMessageClient,
	context.CancelFunc)

SubscribeCustomMessages creates a subscription client for custom messages.

func (*HarnessRPC) SubscribeHtlcEvents

func (h *HarnessRPC) SubscribeHtlcEvents() HtlcEventsClient

SubscribeHtlcEvents makes a subscription to the HTLC events and returns a htlc event client.

func (*HarnessRPC) SubscribeInvoices

func (h *HarnessRPC) SubscribeInvoices(
	req *lnrpc.InvoiceSubscription) InvoiceUpdateClient

SubscribeInvoices creates a subscription client for invoice events and asserts its creation.

NOTE: make sure to subscribe an invoice as early as possible as it takes some time for the lnd to create the subscription client. If an invoice is added right after the subscription, it may be missed. However, if AddIndex or SettleIndex is used in the request, it will be fine as a backlog will always be sent.

func (*HarnessRPC) SubscribeSingleInvoice

func (h *HarnessRPC) SubscribeSingleInvoice(rHash []byte) SingleInvoiceClient

SubscribeSingleInvoice creates a subscription client for given invoice and asserts its creation.

func (*HarnessRPC) SubscribeState

func (h *HarnessRPC) SubscribeState() lnrpc.State_SubscribeStateClient

SubscribeState makes a rpc call to StateClient and asserts there's no error.

func (*HarnessRPC) TrackPaymentV2

func (h *HarnessRPC) TrackPaymentV2(payHash []byte) TrackPaymentClient

TrackPaymentV2 creates a subscription client for given invoice and asserts its creation.

func (*HarnessRPC) TrackPayments

TrackPayments makes a RPC call to the node's RouterClient and asserts.

func (*HarnessRPC) UnlockWallet

UnlockWallet makes a RPC request to WalletUnlocker and asserts there's no error.

func (*HarnessRPC) UpdateChanStatus

UpdateChanStatus makes a UpdateChanStatus RPC call to node's RouterClient and asserts.

func (*HarnessRPC) UpdateChannelPolicy

func (h *HarnessRPC) UpdateChannelPolicy(
	req *lnrpc.PolicyUpdateRequest) *lnrpc.PolicyUpdateResponse

UpdateChannelPolicy makes a RPC call to UpdateChannelPolicy and asserts.

func (*HarnessRPC) UpdateNodeAnnouncement

func (h *HarnessRPC) UpdateNodeAnnouncement(req AnnReq) AnnResp

UpdateNodeAnnouncement makes an UpdateNodeAnnouncement RPC call the peersrpc client and asserts.

func (*HarnessRPC) UpdateNodeAnnouncementErr

func (h *HarnessRPC) UpdateNodeAnnouncementErr(req AnnReq)

UpdateNodeAnnouncementErr makes an UpdateNodeAnnouncement RPC call the peersrpc client and asserts an error is returned.

func (*HarnessRPC) VerifyChanBackup

VerifyChanBackup makes a RPC call to node's VerifyChanBackup and asserts.

func (*HarnessRPC) VerifyMessage

func (h *HarnessRPC) VerifyMessage(msg []byte,
	sig string) *lnrpc.VerifyMessageResponse

VerifyMessage makes a RPC call to node's VerifyMessage and asserts.

func (*HarnessRPC) VerifyMessageSigner

func (h *HarnessRPC) VerifyMessageSigner(
	req *signrpc.VerifyMessageReq) *signrpc.VerifyMessageResp

VerifyMessageSigner makes a RPC call to the node's SignerClient and asserts.

NOTE: there's already `VerifyMessageSigner` in `h.LN`.

func (*HarnessRPC) VerifyMessageWithAddr

func (h *HarnessRPC) VerifyMessageWithAddr(
	req *walletrpc.VerifyMessageWithAddrRequest) VerifyResp

VerifyMessageWithAddr makes a RPC call to the VerifyMessageWithAddr and asserts.

func (*HarnessRPC) WalletBalance

func (h *HarnessRPC) WalletBalance() *lnrpc.WalletBalanceResponse

WalletBalance makes a RPC call to WalletBalance and asserts.

func (*HarnessRPC) WatchtowerStats

func (h *HarnessRPC) WatchtowerStats() *wtclientrpc.StatsResponse

WatchtowerStats makes a RPC call to the WatchtowerClient of the given node and asserts.

func (*HarnessRPC) XImportMissionControl

func (h *HarnessRPC) XImportMissionControl(
	req *routerrpc.XImportMissionControlRequest)

XImportMissionControl makes a RPC call to the node's XImportMissionControl and asserts.

func (*HarnessRPC) XImportMissionControlAssertErr

func (h *HarnessRPC) XImportMissionControlAssertErr(
	req *routerrpc.XImportMissionControlRequest)

XImportMissionControlAssertErr makes a RPC call to the node's XImportMissionControl and asserts an error occurred.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL