From 2459c2ffafdb4db72d7f0c38b5d95849ad5abc06 Mon Sep 17 00:00:00 2001 From: Gilad Haimov Date: Tue, 10 Sep 2024 07:55:07 +0300 Subject: [PATCH] core uppercased --- eth/gasprice/lfm/nativediscount.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/gasprice/lfm/nativediscount.go b/eth/gasprice/lfm/nativediscount.go index b89f5cb3b..5b43b3a55 100644 --- a/eth/gasprice/lfm/nativediscount.go +++ b/eth/gasprice/lfm/nativediscount.go @@ -73,7 +73,7 @@ func AdjustGasPriceForEstimation(_networkGasPrice *hexutil.Big, _gasAmount *hexu } func AdjustGasPrice(gasAmount uint64, value *big.Int, to *common.Address, data []byte, networkGasPrice *big.Int) *big.Int { - // apply gas-price discount if tx is a 'native' transfer of either Core or whitelisted erc20 + // apply gas-price discount if tx is a 'native' transfer of either CORE or whitelisted erc20 if isCoreTransferTx(gasAmount, value, len(data)) { return discountCoreTransferTx(networkGasPrice) }