| | |
| | | } |
| | | |
| | | // gas费用单价 |
| | | public static final BigInteger GAS_PRICE = BigInteger.valueOf(32000000000L); |
| | | // public static final BigInteger GAS_PRICE = BigInteger.valueOf(32000000000L); |
| | | public static final BigInteger GAS_PRICE = BigInteger.valueOf(10000000000L); |
| | | // gas费用最大值 |
| | | public static final BigInteger GAS_LIMIT = BigInteger.valueOf(4300000L); |
| | | // public static final BigInteger GAS_LIMIT = BigInteger.valueOf(4300000L); |
| | | public static final BigInteger GAS_LIMIT = BigInteger.valueOf(1000000L); |
| | | private static StaticGasProvider getStaticGasProvider(){ |
| | | return new StaticGasProvider(GAS_PRICE,GAS_LIMIT); |
| | | } |