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
4 changes: 2 additions & 2 deletions ethereum/light-client/src/bin/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ pub const ALL_PAIRS_STORAGE_KEY: &str =
struct Cli {
/// The address of the checkpoint service provider.
///
/// See https://eth-clients.github.io/checkpoint-sync-endpoints
/// See <https://eth-clients.github.io/checkpoint-sync-endpoints>
#[arg(short, long)]
checkpoint_provider_address: String,

/// The address for the beacon node API.
///
/// It is recommended to use https://www.lightclientdata.org
/// It is recommended to use <https://www.lightclientdata.org>
#[arg(short, long)]
beacon_node_address: String,

Expand Down
2 changes: 1 addition & 1 deletion ethereum/light-client/src/client/storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
//! ## Storage provider address
//!
//! The storage client expects an address that contains an API key, which identifies an account at
//! those RPC partners (e.g.:https://mainnet.infura.io/v3/YOUR-API-KEY). The API key is used to
//! those RPC partners (e.g.: <https://mainnet.infura.io/v3/YOUR-API-KEY>). The API key is used to
//! authenticate the client with the RPC provider.

use crate::client::error::ClientError;
Expand Down
2 changes: 1 addition & 1 deletion ethereum/light-client/src/types/network.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ impl Request {
///
/// # Returns
///
/// A Vec<u8> representing the enum.
/// A `Vec<u8>` representing the enum.
pub fn to_bytes(&self) -> Result<Vec<u8>, Error> {
match self {
Request::ProveCommitteeChange(boxed) => {
Expand Down
2 changes: 1 addition & 1 deletion kadena/core/src/types/header/chain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ impl KadenaHeaderRaw {
///
/// # Notes
///
/// When the chain graph degree changes along with the [`crate::types::graph::TWENTY_CHAIN_GRAPH_DEGREE`]
/// When the chain graph degree changes along with the [`crate::types::graph::CHAIN_GRAPH`]
/// constant this method should be updated.
pub fn header_root(&self) -> Result<HashValue, CryptoError> {
let mut adjacent_hashes: Vec<[u8; 32]> = Vec::with_capacity(GRAPH_DEGREE);
Expand Down
2 changes: 1 addition & 1 deletion kadena/light-client/src/types/network.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ impl Request {
///
/// # Returns
///
/// A Vec<u8> representing the enum.
/// A `Vec<u8>` representing the enum.
pub fn to_bytes(&self) -> Result<Vec<u8>, Error> {
match self {
Request::ProveLongestChain(boxed) => {
Expand Down
Loading