Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion aleph-client/src/pallets/staking.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use crate::{
ConnectionApi, EraIndex, RootConnection, SignedConnectionApi, SudoCall, TxStatus,
};

/// Any object that implemnts pallet staking read-only api.
/// Any object that implements pallet staking read-only api.
#[async_trait::async_trait]
pub trait StakingApi {
/// Returns [`active_era`](https://paritytech.github.io/substrate/master/pallet_staking/struct.Pallet.html#method.active_era).
Expand Down
2 changes: 1 addition & 1 deletion e2e-tests/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ fn try_node_name_into_ip_address(node_name: String) -> anyhow::Result<Ipv4Addr>
// we need to provide a valid socket address, i.e. add a port number
let node_name = node_name + ":22";
for addr in node_name.to_socket_addrs().context(format!(
"Failed to convert node's name ({}) into IPv4 addrress.",
"Failed to convert node's name ({}) into IPv4 address.",
node_name
))? {
if let std::net::SocketAddr::V4(socket_address) = addr {
Expand Down