Skip to content

Commit 432e2eb

Browse files
interchain tests: increase TX size (#308)
1 parent a3c76ce commit 432e2eb

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

test/interchain/chainsuite/config.go

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,19 @@ const (
8888
func DefaultConfigToml() testutil.Toml {
8989
configToml := make(testutil.Toml)
9090
consensusToml := make(testutil.Toml)
91+
rpcToml := make(testutil.Toml)
92+
9193
consensusToml["timeout_commit"] = CommitTimeout
94+
95+
rpcToml["max_body_bytes"] = 2097152
96+
rpcToml["max_header_bytes"] = 2097152
97+
9298
configToml["consensus"] = consensusToml
99+
configToml["rpc"] = rpcToml
100+
93101
configToml["block_sync"] = false
94102
configToml["fast_sync"] = false
103+
95104
return configToml
96105
}
97106

0 commit comments

Comments
 (0)