ignoreBadSecrets method

void ignoreBadSecrets(
  1. bool ignore
)

Implementation

void ignoreBadSecrets(bool ignore) {
  if (state != BootstrapState.askBadSsss) {
    throw BootstrapBadStateException('Wrong State');
  }
  if (ignore) {
    migrateOldSsss();
  } else {
    // that's it, folks. We can't do anything here
    state = BootstrapState.error;
  }
}