Skip to content

Commit

Permalink
uppercase
Browse files Browse the repository at this point in the history
  • Loading branch information
lastmjs committed Oct 30, 2024
1 parent ebd99e5 commit 416fac5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file modified canister_templates/stable.wasm
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ fn execute_method_js_with_result(
let record_benchmarks = WASM_DATA_REF_CELL
.with(|wasm_data_ref_cell| wasm_data_ref_cell.borrow().clone())
.as_ref()
.ok_or("could not convert wasm_data_ref_cell to ref")?
.ok_or("Could not convert wasm_data_ref_cell to ref")?
.record_benchmarks;

if record_benchmarks {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pub fn get_function(ctx: Ctx) -> Result<Function> {
.get(&memory_id)
.ok_or(throw_error(
ctx.clone(),
&format!("could not find StableBTreeMap {memory_id}"),
&format!("Could not find StableBTreeMap {memory_id}"),
))?
.is_empty())
})
Expand Down

0 comments on commit 416fac5

Please sign in to comment.