From 959d0481e55bd6ea9bc5cfa2aab5c7aa8bc2e5d4 Mon Sep 17 00:00:00 2001 From: thomaspanf Date: Thu, 5 Sep 2024 21:18:57 -0400 Subject: [PATCH] Removed temp fix for static prio fee --- rocketpool/node/auto-init-voting-power.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/rocketpool/node/auto-init-voting-power.go b/rocketpool/node/auto-init-voting-power.go index 38d0d561f..470f4f191 100644 --- a/rocketpool/node/auto-init-voting-power.go +++ b/rocketpool/node/auto-init-voting-power.go @@ -143,11 +143,6 @@ func (t *autoInitVotingPower) submitInitializeVotingPower() error { return nil } - // Lower the priority fee when the suggested maxfee is lower than the user requested priority fee - if maxFee.Cmp(t.maxPriorityFee) < 0 { - t.maxPriorityFee = new(big.Int).Div(maxFee, big.NewInt(2)) - } - opts.GasFeeCap = maxFee opts.GasTipCap = t.maxPriorityFee opts.GasLimit = gas.Uint64()