CORDA-1008 Samples fail to run due to wrongly configured max transaction size in the network bootstrapper (#2509)

* [CORDA-1008] - Samples fail to run due to wrongly configured max transaction size in the network bootstrapper

* address PR issues
This commit is contained in:
Patrick Kuo
2018-02-12 15:33:22 +00:00
committed by GitHub
parent 3f3e0e9973
commit ddf0d34147
2 changed files with 2 additions and 2 deletions

View File

@ -165,7 +165,7 @@ class NetworkBootstrapper {
notaries = notaryInfos,
modifiedTime = Instant.now(),
maxMessageSize = 10485760,
maxTransactionSize = 40000,
maxTransactionSize = Int.MAX_VALUE,
epoch = 1
), overwriteFile = true)