From 8c2e33f727b22d998974295f2739d7df7e7ef5ae Mon Sep 17 00:00:00 2001 From: Nick Johnson Date: Sun, 7 Jan 2018 19:34:15 +0000 Subject: [PATCH] eth: Use 60% for GPO, not 35% --- eth/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/config.go b/eth/config.go index f8aee8c65a..68a02e78c4 100644 --- a/eth/config.go +++ b/eth/config.go @@ -50,7 +50,7 @@ var DefaultConfig = Config{ TxPool: core.DefaultTxPoolConfig, GPO: gasprice.Config{ Blocks: 100, - Percentile: 35, + Percentile: 60, }, }