Fix typos in pallet-contracts (#13629)

* Fix typos in pallet-contracts
This commit is contained in:
PG Herveou
2023-03-17 16:31:51 +01:00
committed by GitHub
parent 5378c64c39
commit f5773795e9
14 changed files with 37 additions and 37 deletions
+2 -2
View File
@@ -594,7 +594,7 @@ impl<BlockHash: Hash, Key: Hash, D: MetaDb> StateDb<BlockHash, Key, D> {
}
/// Prevents pruning of specified block and its descendants.
/// `hint` used for futher checking if the given block exists
/// `hint` used for further checking if the given block exists
pub fn pin<F>(&self, hash: &BlockHash, number: u64, hint: F) -> Result<(), PinError>
where
F: Fn() -> bool,
@@ -665,7 +665,7 @@ pub enum IsPruned {
Pruned,
/// Definitely not pruned
NotPruned,
/// May or may not pruned, need futher checking
/// May or may not pruned, need further checking
MaybePruned,
}