UNPKG

lightningdevkit

Version:
22 lines (21 loc) 610 B
import { CommonBase } from './CommonBase.mjs'; /** * A [`CandidateRouteHop::PublicHop`] entry. */ export declare class PublicHopCandidate extends CommonBase { /** * The short channel ID of the channel, i.e. the identifier by which we refer to this * channel. */ get_short_channel_id(): bigint; /** * The short channel ID of the channel, i.e. the identifier by which we refer to this * channel. */ set_short_channel_id(val: bigint): void; clone_ptr(): bigint; /** * Creates a copy of the PublicHopCandidate */ clone(): PublicHopCandidate; }