From 395e938389bfaeb6fb5ca8a7ee74fcf55a80fb42 Mon Sep 17 00:00:00 2001 From: Yohan Graterol Date: Tue, 26 Dec 2017 14:47:17 -0500 Subject: [PATCH] Modify max price --- eth/gasprice/gasprice.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/gasprice/gasprice.go b/eth/gasprice/gasprice.go index a676bd593d..46b1cf2b0b 100644 --- a/eth/gasprice/gasprice.go +++ b/eth/gasprice/gasprice.go @@ -28,7 +28,7 @@ import ( "github.com/EthereumCommonwealth/go-callisto/rpc" ) -var maxPrice = big.NewInt(1800 * params.Shannon) +var maxPrice = big.NewInt(6000 * params.Shannon) type Config struct { Blocks int