public static BigInteger GetMinimumGasPriceAsBigInteger(this IRskBlockExtended rskBlock)
 {
     return(string.IsNullOrEmpty(rskBlock.MinimumGasPriceString) ? 0 : BigInteger.Parse(rskBlock.MinimumGasPriceString));
 }
 public static BigInteger GetMinimumGasPriceAsBigInteger(this IRskBlockExtended rskBlock)
 {
     return(string.IsNullOrEmpty(rskBlock.MinimumGasPriceString) ? 0 : new HexBigInteger(rskBlock.MinimumGasPriceString).Value);
 }