mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 18:10:34 +01:00
84fd911b47
Fixes new lint errors caught by the latest version.
40 lines
1.0 KiB
Go
40 lines
1.0 KiB
Go
package rpc
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/lightningnetwork/lnd/lnrpc/peersrpc"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
// =====================
|
|
// PeerClient related RPCs.
|
|
// =====================
|
|
|
|
type (
|
|
AnnReq *peersrpc.NodeAnnouncementUpdateRequest
|
|
AnnResp *peersrpc.NodeAnnouncementUpdateResponse
|
|
)
|
|
|
|
// UpdateNodeAnnouncement makes an UpdateNodeAnnouncement RPC call the peersrpc
|
|
// client and asserts.
|
|
func (h *HarnessRPC) UpdateNodeAnnouncement(req AnnReq) AnnResp {
|
|
ctxt, cancel := context.WithTimeout(h.runCtx, DefaultTimeout)
|
|
defer cancel()
|
|
|
|
resp, err := h.Peer.UpdateNodeAnnouncement(ctxt, req)
|
|
h.NoError(err, "UpdateNodeAnnouncement")
|
|
|
|
return resp
|
|
}
|
|
|
|
// UpdateNodeAnnouncementErr makes an UpdateNodeAnnouncement RPC call the
|
|
// peersrpc client and asserts an error is returned.
|
|
func (h *HarnessRPC) UpdateNodeAnnouncementErr(req AnnReq) {
|
|
ctxt, cancel := context.WithTimeout(h.runCtx, DefaultTimeout)
|
|
defer cancel()
|
|
|
|
_, err := h.Peer.UpdateNodeAnnouncement(ctxt, req)
|
|
require.Error(h, err, "expect an error from update announcement")
|
|
}
|