Skip to content

Commit

Permalink
Ensure python bindings are doing the right thing
Browse files Browse the repository at this point in the history
  • Loading branch information
prozacchiwawa committed Apr 19, 2024
1 parent d27991e commit 7be12ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/py/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ fn start_clvm_program(

let result = cldbrun.step(&mut allocator);
let is_ended = cldbrun.is_ended();
match result_output.send((is_ended, result)) {
match result_output.send((is_ended, result.map(|mut r| r.into_dict()))) {
Ok(_) => {}
Err(_) => {
return;
Expand Down

0 comments on commit 7be12ee

Please sign in to comment.