diff options
author | Aaron Buchwald <[email protected]> | 2020-12-17 13:58:14 -0500 |
---|---|---|
committer | Aaron Buchwald <[email protected]> | 2020-12-17 13:58:14 -0500 |
commit | 3960b690bf8c67afe706bb469b0ff2798424a26e (patch) | |
tree | 77b60c080f63df21af115406e6b78a7862a68ad9 /eth/backend.go | |
parent | ea099f5811574d3dae79a31053d21b523d008d75 (diff) |
Decrease minimum gas price at apricot upgrade
Diffstat (limited to 'eth/backend.go')
-rw-r--r-- | eth/backend.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/eth/backend.go b/eth/backend.go index e26cbb3..9b6f1e4 100644 --- a/eth/backend.go +++ b/eth/backend.go @@ -559,3 +559,13 @@ func (s *Ethereum) AcceptedBlock() *types.Block { } return s.blockchain.CurrentBlock() } + +// SetGasPrice sets the minimum gas price to [newGasPrice] +// sets the price on [s], [txPool], and the gas price oracle +func (s *Ethereum) SetGasPrice(newGasPrice *big.Int) { + s.lock.Lock() + s.gasPrice = newGasPrice + s.lock.Unlock() + s.txPool.SetGasPrice(newGasPrice) + s.APIBackend.gpo.SetGasPrice(newGasPrice) +} |