From 922fc3858b4c470a39b3ae98a479980e774896b5 Mon Sep 17 00:00:00 2001 From: Flouse <1297478+Flouse@users.noreply.github.com> Date: Mon, 4 Dec 2023 07:28:49 +0000 Subject: [PATCH] config: set default_max_contract_limit to 0xc000 --- protocol/src/types/primitive.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocol/src/types/primitive.rs b/protocol/src/types/primitive.rs index 5196108e2..e2b47e5b4 100644 --- a/protocol/src/types/primitive.rs +++ b/protocol/src/types/primitive.rs @@ -431,7 +431,7 @@ impl From for ConsensusConfigV0 { } pub fn default_max_contract_limit() -> u64 { - 0x6000 + 0xc000 } impl From for DurationConfig {