Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BOLT#2: Add message retransmission sub-system #156

Closed

Commits on Mar 16, 2017

  1. Configuration menu
    Copy the full SHA
    fbff9d4 View commit details
    Browse the repository at this point in the history
  2. linter: fix new warnings

    andrewshvv committed Mar 16, 2017
    Configuration menu
    Copy the full SHA
    2942c9e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    72eabf3 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d621463 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6391f63 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    08f4ece View commit details
    Browse the repository at this point in the history
  7. lnwire: add message header decode/encode test

    in this commit lnwire message header encode/decode tests
    were added, without it newcommer programmer may change the
    type inside message header and spend hours on debugging of
    integration test trying to understand why his node can't
    start and interact properly.
    andrewshvv committed Mar 16, 2017
    Configuration menu
    Copy the full SHA
    1059909 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    69be2de View commit details
    Browse the repository at this point in the history
  9. channeldb+retranmission: add retranmission subsystem

    Issue: lightningnetwork#137
    
    In this commit retranmission subsystem and boltdb mesage storage were
    added. Retransmission subsystem described in details in BOLT #2
    (Message Retransmission) section. This subsystem keeps records
    of all messages that were sent to other peer and waits the ACK
    message to be received from other side and after that removes all
    acked messaged from the storage.
    andrewshvv committed Mar 16, 2017
    Configuration menu
    Copy the full SHA
    9243a99 View commit details
    Browse the repository at this point in the history
  10. lnd: add retransmission subsystem

    Issue: lightningnetwork#137
    
    In this commit the retransmission subsystem was included in lnd,
    now upon peer reconnection we fetch all messages from message storage
    that were not acked and send them again to remote side.
    andrewshvv committed Mar 16, 2017
    Configuration menu
    Copy the full SHA
    f8b2624 View commit details
    Browse the repository at this point in the history