Skip to content

Commit

Permalink
Increase transaction size limit (#1055)
Browse files Browse the repository at this point in the history
Co-authored-by: shaorongqiang <shaorongqiang@email.com>
  • Loading branch information
shaorongqiang and shaorongqiang authored May 2, 2024
1 parent d90052f commit bf087af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/abciapp/src/abci/server/tx_sender.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
Expand Down

0 comments on commit bf087af

Please sign in to comment.