Class ConfigSettingContractComputeV0

java.lang.Object
org.stellar.sdk.xdr.ConfigSettingContractComputeV0

public class ConfigSettingContractComputeV0 extends Object
ConfigSettingContractComputeV0's original definition in the XDR file is:
 struct ConfigSettingContractComputeV0
 {
     // Maximum instructions per ledger
     int64 ledgerMaxInstructions;
     // Maximum instructions per transaction
     int64 txMaxInstructions;
     // Cost of 10000 instructions
     int64 feeRatePerInstructionsIncrement;

     // Memory limit per transaction. Unlike instructions, there is no fee
     // for memory, just the limit.
     uint32 txMemoryLimit;
 };