Hello, have a two questions:
1. Does Gas play any role in speeding up a transaction execution. Is it make sense to set more gas that it was calculated by formula (for writing data to blockchain)
tx.gasLimit =
networkConfig.erd_min_gas_limit +
networkConfig.erd_gas_per_data_byte * lengthOf(tx.data)
2. What is the max amount of bytes I can write into tx data field? Is writing data limitation based only on max_gas_per_transactiont?
1. Gas plays no role for prioritization :) 2. Limited only by the gas as far as I'm aware :)