All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cc.youchain.tx.gas.DefaultGasProvider Maven / Gradle / Ivy

There is a newer version: 1.1.5
Show newest version
package cc.youchain.tx.gas;

import java.math.BigInteger;

import cc.youchain.tx.Contract;
import cc.youchain.tx.ManagedTransaction;

public class DefaultGasProvider extends StaticGasProvider {
    public static final BigInteger GAS_LIMIT = Contract.GAS_LIMIT;
    public static final BigInteger GAS_PRICE = ManagedTransaction.GAS_PRICE;

    public DefaultGasProvider() {
        super(GAS_PRICE, GAS_LIMIT);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy