Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump crate-ci/typos from 1.19.0 to 1.27.3 #2271

Merged
merged 5 commits into from
Nov 11, 2024
Merged
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 .github/workflows/typos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ jobs:
name: Checkout Repository

- name: typos-action
uses: crate-ci/typos@v1.19.0
uses: crate-ci/typos@v1.27.3
2 changes: 1 addition & 1 deletion contracts/rust/diff-test/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ fn main() {
let mut proofs: Vec<ParsedPlonkProof> = vec![];

for _ in 1..4 {
// random number of notorized but not finalized block
// random number of notarized but not finalized block
if ledger.rng.gen_bool(0.5) {
let num_non_blk = ledger.rng.gen_range(0..5);
for _ in 0..num_non_blk {
Expand Down
2 changes: 1 addition & 1 deletion hotshot-state-prover/src/mock_ledger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ impl MockLedger {
// pub fn elapse_epoch(&mut self, num_reg: usize, num_exit: usize) {
// assert!(self.qc_keys.len() + num_reg - num_exit <= self.pp.st_cap);

// // random number of notorized but not finalized block
// // random number of notarized but not finalized block
// let num_non_blk = self.rng.gen_range(0..10);
// for _ in 0..num_non_blk {
// self.elapse_without_block();
Expand Down
2 changes: 1 addition & 1 deletion sequencer/src/message_compat_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ async fn test_message_compat<Ver: StaticVersionType>(_ver: Ver) {
let (sender, priv_key) = PubKey::generated_from_seed_indexed(Default::default(), 0);
let signature = PubKey::sign(&priv_key, &[]).unwrap();
let membership = StaticCommittee::new(
vec![], /* no elligible leaders */
vec![], /* no eligible leaders */
vec![PeerConfig::default()], /* one committee member, necessary to generate a VID share */
Topic::Global,
);
Expand Down
2 changes: 1 addition & 1 deletion utils/src/blocknative.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! Copy from <https://github.com/gakonst/ethers-rs/blob/master/ethers-middleware/src/gas_oracle/blocknative.rs>
//! which is unmaintained and out-of-sync with the latest blocknative feed
//!
//! TDOO: revisit this or remove this when switching to `alloy-rs`
//! TODO: revisit this or remove this when switching to `alloy-rs`
use async_trait::async_trait;
use ethers::{
middleware::gas_oracle::{from_gwei_f64, GasCategory, GasOracle, GasOracleError, Result},
Expand Down