From c07918e7d81a0004e39cc418f6be9fdf83c15537 Mon Sep 17 00:00:00 2001 From: haryu703 <34744512+haryu703@users.noreply.github.com> Date: Fri, 25 Jun 2021 19:48:06 +0900 Subject: [PATCH] eth/gasprice: fix typo in comment (#22998) --- 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 9a800877cd..f2c4def141 100644 --- a/eth/gasprice/gasprice.go +++ b/eth/gasprice/gasprice.go @@ -155,7 +155,7 @@ func (gpo *Oracle) SuggestTipCap(ctx context.Context) (*big.Int, error) { // Nothing returned. There are two special cases here: // - The block is empty // - All the transactions included are sent by the miner itself. - // In these cases, use the latest calculated price for samping. + // In these cases, use the latest calculated price for sampling. if len(res.values) == 0 { res.values = []*big.Int{lastPrice} }