Skip to content
This repository has been archived by the owner on May 4, 2024. It is now read-only.

Commit

Permalink
[fixup] adjust max nesting level of typetag to 13 serialize/12 deseri…
Browse files Browse the repository at this point in the history
…alize
  • Loading branch information
wrwg committed Oct 7, 2022
1 parent f0a09f1 commit 4f1edc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion language/move-core/types/src/safe_serialize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use serde::{Deserialize, Deserializer, Serialize, Serializer};
use std::cell::RefCell;

pub(crate) const MAX_TYPE_TAG_NESTING: u8 = 9;
pub(crate) const MAX_TYPE_TAG_NESTING: u8 = 13;

thread_local! {
static TYPE_TAG_DEPTH: RefCell<u8> = RefCell::new(0);
Expand Down

0 comments on commit 4f1edc9

Please # to comment.