Skip to content

Commit

Permalink
Fiz typo
Browse files Browse the repository at this point in the history
  • Loading branch information
albertandrejev committed Nov 29, 2023
1 parent ab1ceab commit 85a8f64
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions contracts/neutron_interchain_queries/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use cosmwasm_std::{
Uint128,
};
use cw2::set_contract_version;
use neutron_sdk::interchain_queries::v045::register_queries::new_register_validators_signig_infos_query_msg;
use neutron_sdk::interchain_queries::v045::register_queries::new_register_validators_signing_infos_query_msg;

use crate::msg::{
Cw20BalanceResponse, ExecuteMsg, GetRecipientTxsResponse, InstantiateMsg, MigrateMsg, QueryMsg,
Expand Down Expand Up @@ -184,7 +184,7 @@ pub fn register_validators_signing_infos_query(
update_period: u64,
) -> NeutronResult<Response<NeutronMsg>> {
let msg =
new_register_validators_signig_infos_query_msg(connection_id, validators, update_period)?;
new_register_validators_signing_infos_query_msg(connection_id, validators, update_period)?;

Ok(Response::new().add_message(msg))
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ pub fn new_register_staking_validators_query_msg(
/// * **connection_id** is an IBC connection identifier between Neutron and remote chain;
/// * **validators** is an list of validators valcons addresses of an account on remote chain for which you want to get rewards ;
/// * **update_period** is used to say how often the query must be updated.
pub fn new_register_validators_signig_infos_query_msg(
pub fn new_register_validators_signing_infos_query_msg(
connection_id: String,
validators: Vec<String>,
update_period: u64,
Expand Down

0 comments on commit 85a8f64

Please sign in to comment.