Skip to content

Commit

Permalink
fix for signature-provider
Browse files Browse the repository at this point in the history
  • Loading branch information
justefg committed Sep 3, 2019
1 parent 6e533cf commit a120e5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/randpa_plugin/randpa_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ void randpa_plugin::plugin_initialize(const variables_map& options) {
}

const auto key_spec_pair_vector = options["signature-provider"].as<vector<std::string>>();
if (!key_spec_pair_vector.empty()) {
if (key_spec_pair_vector.empty()) {
return;
}
const std::string key_spec_pair = key_spec_pair_vector[0];
Expand Down

0 comments on commit a120e5b

Please sign in to comment.