Skip to content

Commit 4edafde

Browse files
authored
Merge pull request #4361 from stacks-network/hotfix/masked-result
Hotfix/masked result
2 parents 5aaf813 + 7f7707c commit 4edafde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clarity/src/vm/contexts.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1359,7 +1359,7 @@ impl<'a, 'b, 'hooks> Environment<'a, 'b, 'hooks> {
13591359
self.global_context.begin();
13601360
let result = stx_transfer_consolidated(self, from, to, amount, memo);
13611361
match result {
1362-
Ok(value) => match value.clone().expect_result() {
1362+
Ok(value) => match value.clone().expect_result()? {
13631363
Ok(_) => {
13641364
self.global_context.commit()?;
13651365
Ok(value)

0 commit comments

Comments
 (0)