Stop bootstrapper errors caused by maxTransactionSize > maxMessageSize

This commit is contained in:
Anthony Keenan 2018-08-21 17:43:15 +01:00 committed by Mike Hearn
parent 9544fac2c0
commit bdc67f453e

View File

@ -46,7 +46,7 @@ interface Volume {
minimumPlatformVersion = 1, minimumPlatformVersion = 1,
notaries = it, notaries = it,
maxMessageSize = 10485760, maxMessageSize = 10485760,
maxTransactionSize = Int.MAX_VALUE, maxTransactionSize = 10485760,
modifiedTime = Instant.now(), modifiedTime = Instant.now(),
epoch = 10, epoch = 10,
whitelistedContractImplementations = emptyMap()) whitelistedContractImplementations = emptyMap())