mirror of
https://github.com/corda/corda.git
synced 2025-04-08 11:54:44 +00:00
Fix demo bench issue stopping nodes starting up with max transaction size > max message size
This commit is contained in:
parent
f6466cde41
commit
f856a77c96
@ -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()
|
||||
))
|
||||
|
Loading…
x
Reference in New Issue
Block a user