From 63918b3c8ab3eabe6ba34bfca596e67f31393d45 Mon Sep 17 00:00:00 2001 From: ViacheslavB Date: Wed, 29 Nov 2023 16:55:23 +0300 Subject: [PATCH] Fix the cell serialization --- src/miscellaneous.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/miscellaneous.rs b/src/miscellaneous.rs index 321b3fc..4450195 100644 --- a/src/miscellaneous.rs +++ b/src/miscellaneous.rs @@ -108,6 +108,7 @@ impl Deserializable for ProcessedUpto { 64 => Some(cell.get_next_u64()?), // Compatibility with data serialized with old version of the library // (with "fast_finality" feature) + 1 => None, 65 => Deserializable::construct_maybe_from(cell)?, _ => fail!("Invalid cell size"), };