Skip to content

Commit

Permalink
runtime: fix rebase problem
Browse files Browse the repository at this point in the history
  • Loading branch information
gusinacio committed Mar 24, 2023
1 parent 1cbb1ea commit d112905
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/wasm/src/to_from/external.rs
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ impl ToAscObj<Array<AscPtr<AscEntity>>> for Vec<Vec<(String, store::Value)>> {
&self,
heap: &mut H,
gas: &GasCounter,
) -> Result<Array<AscPtr<AscEntity>>, DeterministicHostError> {
) -> Result<Array<AscPtr<AscEntity>>, HostExportError> {
let content: Result<Vec<_>, _> = self.iter().map(|x| asc_new(heap, &x, gas)).collect();
let content = content?;
Array::new(&content, heap, gas)
Expand Down

0 comments on commit d112905

Please sign in to comment.