From bf087afb9fa3f2362aa6e09e27846eab3bdb8987 Mon Sep 17 00:00:00 2001 From: shaorongqiang <26101255+shaorongqiang@users.noreply.github.com> Date: Thu, 2 May 2024 10:48:42 +0800 Subject: [PATCH] Increase transaction size limit (#1055) Co-authored-by: shaorongqiang --- src/components/abciapp/src/abci/server/tx_sender.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/abciapp/src/abci/server/tx_sender.rs b/src/components/abciapp/src/abci/server/tx_sender.rs index c3051599f..090b7ced4 100644 --- a/src/components/abciapp/src/abci/server/tx_sender.rs +++ b/src/components/abciapp/src/abci/server/tx_sender.rs @@ -10,7 +10,7 @@ use { }; static TX_PENDING_CNT: AtomicU16 = AtomicU16::new(0); -pub static TX_SIZE: usize = 8192; +pub static TX_SIZE: usize = 314572800; //300 * 1024 * 1024; pub struct TendermintForward { pub tendermint_reply: String, }