From 6177c6743996b448c187a3ebac9d01e9bbe5f382 Mon Sep 17 00:00:00 2001 From: irrun Date: Thu, 25 Jul 2024 16:12:08 +0800 Subject: [PATCH] chore: log --- miner/bid_simulator.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/miner/bid_simulator.go b/miner/bid_simulator.go index 98bda60a14..1b4b16463f 100644 --- a/miner/bid_simulator.go +++ b/miner/bid_simulator.go @@ -659,8 +659,10 @@ func (b *bidSimulator) simBid(interruptCh chan int32, bidRuntime *BidRuntime) { if bidGasUsed != 0 { bidGasPrice := new(big.Int).Div(bidGasFee, new(big.Int).SetUint64(bidGasUsed)) if bidGasPrice.Cmp(b.minGasPrice) < 0 { - err = errors.New("bid gas price is lower than min gas price") - return + log.Warn("BidSimulator: bid gas price is lower than min gas price", + "builder", bidRuntime.bid.Builder, "gasPrice", bidGasPrice, "minGasPrice", b.minGasPrice) + //err = errors.New("bid gas price is lower than min gas price") + //return } } }