Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Artemka374 committed Oct 9, 2024
1 parent f187259 commit 066d0c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/lib/prover_interface/src/inputs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ impl StoredObject for VMRunWitnessInputData {

fn deserialize(bytes: Vec<u8>) -> Result<Self, BoxedError> {
zksync_object_store::bincode::deserialize::<VMRunWitnessInputData>(&bytes).or_else(|_| {
bincode::deserialize::<VMRunWitnessInputDataLegacy>(&bytes)
zksync_object_store::bincode::deserialize::<VMRunWitnessInputDataLegacy>(&bytes)
.map(Into::into)
.map_err(Into::into)
})
Expand Down

0 comments on commit 066d0c3

Please sign in to comment.