From d7891c0d247be88b15135a4902f4f47296a476ae Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 5 Jan 2022 10:09:10 +0100 Subject: [PATCH] Bump maximum GPO price to 5000 Gwei --- 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 0fa6c29591..41ef5a4537 100644 --- a/eth/gasprice/gasprice.go +++ b/eth/gasprice/gasprice.go @@ -35,7 +35,7 @@ import ( const sampleNumber = 3 // Number of transactions sampled in a block var ( - DefaultMaxPrice = big.NewInt(500 * params.GWei) + DefaultMaxPrice = big.NewInt(5000 * params.GWei) DefaultIgnorePrice = big.NewInt(2 * params.Wei) )