All files / lib/lightning HtlcDirection.ts

100% Statements 3/3
100% Branches 2/2
100% Functions 1/1
100% Lines 3/3

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18      1x         1x             1x    
/**
 * Direction, from our node's perspective, of an HTLC.
 */
export enum HtlcDirection {
  /**
   * We have offered this HTLC to pay a node directly or on behalf
   * of a forward request.
   */
  Offered = 0,
 
  /**
   * We have accepted this HTLC from the counterparty. We may be the
   * final hop in a chain (and would posssess) the preimage or we may
   * be a processing hop in a sequence of payments.
   */
  Accepted = 1,
}