Skip to content

Commit

Permalink
0.3.17
Browse files Browse the repository at this point in the history
  • Loading branch information
andreespirela committed Feb 18, 2023
1 parent 5c6c4a1 commit 7bf3f3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/napi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pub struct ExecuteContractResult {
pub result: serde_json::Value,
pub validity: HashMap<String, serde_json::Value>,
pub exm_context: serde_json::Value,
pub updated: bool
pub updated: bool,
}

#[napi(object)]
Expand Down Expand Up @@ -148,7 +148,7 @@ fn get_result(
result,
validity: validity_to_hashmap(validity),
exm_context: serde_json::to_value(exm_context).unwrap(),
updated: data.updated
updated: data.updated,
})
}
ExecuteResult::Evm(..) => todo!(),
Expand Down

0 comments on commit 7bf3f3a

Please sign in to comment.