From abacb7901f1e380f33a6aad084d96ae24f3f4dc8 Mon Sep 17 00:00:00 2001 From: Alexander Popiak Date: Fri, 22 Oct 2021 13:02:03 +0200 Subject: [PATCH] adjust max downward message size to be the same as upward message size --- node/service/src/chain_spec.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/service/src/chain_spec.rs b/node/service/src/chain_spec.rs index 84c6e767f0ea..59dc3fcfd4a1 100644 --- a/node/service/src/chain_spec.rs +++ b/node/service/src/chain_spec.rs @@ -181,7 +181,7 @@ fn default_parachains_host_configuration( thread_availability_period: 4, max_upward_queue_count: 8, max_upward_queue_size: 1024 * 1024, - max_downward_message_size: 1024, + max_downward_message_size: 1024 * 1024, // this is approximatelly 4ms. // // Same as `4 * frame_support::weights::WEIGHT_PER_MILLIS`. We don't bother with