Status

public enum Status

The Status of the synchronizer

  • Indicates that [stop] has been called on this Synchronizer and it will no longer be used.

    Declaration

    Swift

    case stopped
  • Indicates that this Synchronizer is disconnected from its lightwalletd server. When set, a UI element may want to turn red.

    Declaration

    Swift

    case disconnected
  • Indicates that this Synchronizer is not yet synced and therefore should not broadcast transactions because it does not have the latest data. When set, a UI element may want to turn yellow.

    Declaration

    Swift

    case syncing
  • Indicates that this Synchronizer is fully up to date and ready for all wallet functions. When set, a UI element may want to turn green.

    Declaration

    Swift

    case synced