Skip to content

Commit

Permalink
change get_cell output
Browse files Browse the repository at this point in the history
  • Loading branch information
KaoImin committed Dec 18, 2023
1 parent 88f5bd3 commit c2fd683
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/executor/src/precompiles/get_cell.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ impl PrecompileContract for GetCell {
Ok((
PrecompileOutput {
exit_status: ExitSucceed::Returned,
output: cell_opt.unwrap().encode(),
output: AbiEncode::encode((cell_opt.unwrap(),)),
},
gas,
))
Expand Down

0 comments on commit c2fd683

Please sign in to comment.