nitesh solanki
nitesh solanki

Reputation: 177

Changing the maxTransactionSize using Corda OS v3.x with network bootstrapper

Can we change maxTransactionSize in Corda OS v3.x with network bootstrapper?

Also the default value of maxTransactionSize is 525MB? as per the below code? https://github.com/corda/corda/blob/master/node-api/src/main/kotlin/net/corda/nodeapi/internal/network/NetworkBootstrapper.kt#L420

Upvotes: 0

Views: 124

Answers (1)

Joel
Joel

Reputation: 23150

As of Corda 3, there is no way to change the network parameters of a bootstrapped network, except for adding additional whitelisted contract JARs.

In Corda 4, a mechanism will be introduced to allow the network parameters of a bootstrapped network to be modified.

The default max transaction size is actually given here and is 2048MB.

Upvotes: 1

Related Questions