Fix demo bench issue stopping nodes starting up with max transaction size > max message size

This commit is contained in:
Anthony Keenan 2018-08-21 17:37:39 +01:00 committed by Mike Hearn
parent f6466cde41
commit f856a77c96

View File

@ -146,7 +146,7 @@ class NodeController(check: atRuntime = ::checkExists) : Controller() {
notaries = listOf(NotaryInfo(identity, config.nodeConfig.notary!!.validating)),
modifiedTime = Instant.now(),
maxMessageSize = 10485760,
maxTransactionSize = Int.MAX_VALUE,
maxTransactionSize = 10485760,
epoch = 1,
whitelistedContractImplementations = emptyMap()
))