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 fendermint/crypto/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use zeroize::{Zeroize, ZeroizeOnDrop, Zeroizing};
pub use libsecp256k1::{PublicKey, RecoveryId, Signature};

/// A [`GeneralPurpose`] engine using the [`alphabet::STANDARD`] base64 alphabet
/// padding bytes when writing but requireing no padding when reading.
/// padding bytes when writing but requiring no padding when reading.
const B64_ENGINE: GeneralPurpose = GeneralPurpose::new(
&alphabet::STANDARD,
GeneralPurposeConfig::new()
Expand Down
2 changes: 1 addition & 1 deletion fendermint/rocksdb/src/kvstore.rs
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ mod tests {
db
}

// Not using the `#[quickcheck]` macro so I can run fewer tests becasue they are slow.
// Not using the `#[quickcheck]` macro so I can run fewer tests because they are slow.
fn run_quickcheck<F: Testable>(f: F) {
QuickCheck::new().tests(TEST_COUNT).quickcheck(f)
}
Expand Down
2 changes: 1 addition & 1 deletion fendermint/testing/contract-test/src/ipc/registry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ impl<DB> RegistryCaller<DB> {
}

impl<DB: Blockstore + Clone> RegistryCaller<DB> {
/// Create a new instance of the built-in subnet implemetation.
/// Create a new instance of the built-in subnet implementation.
///
/// Returns the address of the deployed contract.
pub fn new_subnet(
Expand Down
Loading