Skip to content

Commit

Permalink
Merge pull request #4361 from stacks-network/hotfix/masked-result
Browse files Browse the repository at this point in the history
Hotfix/masked result
  • Loading branch information
jcnelson committed Feb 10, 2024
2 parents 5aaf813 + 7f7707c commit 4edafde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clarity/src/vm/contexts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1359,7 +1359,7 @@ impl<'a, 'b, 'hooks> Environment<'a, 'b, 'hooks> {
self.global_context.begin();
let result = stx_transfer_consolidated(self, from, to, amount, memo);
match result {
Ok(value) => match value.clone().expect_result() {
Ok(value) => match value.clone().expect_result()? {
Ok(_) => {
self.global_context.commit()?;
Ok(value)
Expand Down

0 comments on commit 4edafde

Please sign in to comment.