Skip to content

Commit

Permalink
Using validator API instead of nymd (#690)
Browse files Browse the repository at this point in the history
  • Loading branch information
futurechimp authored Jul 26, 2021
1 parent 389d1ba commit 71e3606
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gateway/src/node/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ impl Gateway {
);
let validator_client = validator_client::Client::new(validator_client_config);

let existing_gateways = match validator_client.get_gateways().await {
let existing_gateways = match validator_client.get_cached_gateways().await {
Ok(gateways) => gateways,
Err(err) => {
error!("failed to grab initial network gateways - {}\n Please try to startup again in few minutes", err);
Expand Down

0 comments on commit 71e3606

Please sign in to comment.