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
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ pub struct RewardsClaimMiningRewards {

/// Maximum number of days to consider for the reward claim
///
/// This effects how far back in history this command will search for log update events for the
/// rewards claim. If all log update events to claim occured in fewer than the specified number
/// This affects how far back in history this command will search for log update events for the
/// rewards claim. If all log update events to claim occurred in fewer than the specified number
/// of days, this command will not scan for events in the full range.
#[arg(long, default_value_t = 30)]
days: u32,
Expand Down Expand Up @@ -181,7 +181,7 @@ impl RewardsClaimMiningRewards {
return Ok(());
}

// Search for the WorkLogUpdated events, and the the EpochFinalized events
// Search for the WorkLogUpdated events, and the EpochFinalized events
display.subsection("Searching for claimable work");
display.note(&format!(
"Scanning past {} days for work log updates...",
Expand Down
4 changes: 2 additions & 2 deletions crates/boundless-market/src/request_builder/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ impl RequestParams {

/// Request a stand-alone Groth16 proof for this request.
///
/// This is a convinience method to set the selector on the requirements. Note that calling
/// This is a convenience method to set the selector on the requirements. Note that calling
/// [RequestParams::with_requirements] after this function will overwrite the change.
pub fn with_groth16_proof(self) -> Self {
let mut requirements = self.requirements;
Expand All @@ -615,7 +615,7 @@ impl RequestParams {

/// Request a stand-alone Blake3 Groth16 proof for this request.
///
/// This is a convinience method to set the selector on the requirements. Note that calling
/// This is a convenience method to set the selector on the requirements. Note that calling
/// [RequestParams::with_requirements] after this function will overwrite the change.
pub fn with_blake3_groth16_proof(self) -> Self {
let mut requirements = self.requirements;
Expand Down