Skip to content

Commit

Permalink
Revert "Swap ciphertext version, handle type bytes"
Browse files Browse the repository at this point in the history
This reverts commit 9bac8df.
  • Loading branch information
david-zk committed Sep 19, 2024
1 parent dd2976d commit 0186218
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fhevm-engine/coprocessor/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -309,8 +309,8 @@ impl coprocessor::fhevm_coprocessor_server::FhevmCoprocessor for CoprocessorServ
// idx cast to u8 must succeed because we don't allow
// more handles than u8 size
handle[29] = ct_idx as u8;
handle[30] = ciphertext_version as u8;
handle[31] = serialized_type as u8;
handle[30] = serialized_type as u8;
handle[31] = ciphertext_version as u8;

let _ = sqlx::query!(
"
Expand Down

0 comments on commit 0186218

Please sign in to comment.