Increase block minGasLimit for protocol 21

This commit is contained in:
Nick Savers 2014-07-01 16:34:50 +02:00
parent 72128e0e5d
commit dd02d31761
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ public class Block {
private static Logger logger = LoggerFactory.getLogger(Block.class);
/* A scalar value equal to the mininum limit of gas expenditure per block */
private static long MIN_GAS_LIMIT = BigInteger.valueOf(10).pow(4).longValue();
private static long MIN_GAS_LIMIT = 125000L;
public static BigInteger coinbaseReward = BigInteger.valueOf(1500000000000000000L);
private BlockHeader header;