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

Add Initial Chain Sync RPC service. #158

Merged
merged 5 commits into from Jun 21, 2022

Commits on Jun 20, 2022

  1. Configuration menu
    Copy the full SHA
    44613ae View commit details
    Browse the repository at this point in the history
  2. lnrpc: Add missing entry to go.sum

    This adds an imported package and updates the go.sum file to avoid
    errors when attempting to rebuild the lnrpc bindings.
    matheusd committed Jun 20, 2022
    Configuration menu
    Copy the full SHA
    20a8422 View commit details
    Browse the repository at this point in the history
  3. build: Bump version to v0.3.5

    This bumps the current in-development version to the next unreleased
    version.
    matheusd committed Jun 20, 2022
    Configuration menu
    Copy the full SHA
    895e4ff View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2022

  1. initchainsync: First version of service

    This adds a new RPC service that provides endpoints to track the
    progress of the initial chain sync that happens after an LN wallet is
    created or unlocked but before the full RPC services are available.
    matheusd committed Jun 21, 2022
    Configuration menu
    Copy the full SHA
    567a3ec View commit details
    Browse the repository at this point in the history
  2. dcrlnd: Start initchainsync service after unlocking

    This makes the start up procedure of the app offer a new RPC service in
    the time between when the wallet is created or unlocked and the full set
    of RPC services are provided.
    
    This new service can be used to track the progress of the initial chain
    sync process and is useful for clients that connect to a dcrlnd instance
    that is still in the initial startup stage to provide better feedback to
    the user.
    matheusd committed Jun 21, 2022
    Configuration menu
    Copy the full SHA
    a6fcad7 View commit details
    Browse the repository at this point in the history