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
@@ -186,7 +186,7 @@ impl<T: Config> PrefabWasmModule<T> {
code_cache::try_remove::<T>(origin, code_hash)
}
/// Returns whether there is a deposit to be payed for this module.
/// Returns whether there is a deposit to be paid for this module.
///
/// Returns `0` if the module is already in storage and hence no deposit will
/// be charged when storing it.
@@ -689,7 +689,7 @@ mod tests {
executable.execute(ext.borrow_mut(), entry_point, input_data)
}
/// Execute the suppplied code.
/// Execute the supplied code.
fn execute<E: BorrowMut<MockExt>>(wat: &str, input_data: Vec<u8>, ext: E) -> ExecResult {
execute_internal(wat, input_data, ext, &ExportedFunction::Call, true, false)
}