I need to send transactions to a private PoA Ethereum Blockchain. I know by geth source code it is limited to 128 KB:
txMaxSize = 4 * txSlotSize // 128KB
-> tx_pool.go file: https://github.com/ethereum/go-ethereum/blob/master/core/tx_pool.go. Because of these limit i am getting err: overaized data in geth when trying to make a large transaction.
Do you guys know if Hyperledger Besu does limit the amount of data sent in a transaction?
Thanks