From e40f0d207124edda6fab8fd37be21e41c4b1738b Mon Sep 17 00:00:00 2001 From: Rod Vagg Date: Fri, 17 May 2024 11:06:47 +1000 Subject: [PATCH] doc: eth: restore comment lost in linter cleanup Ref: https://github.com/filecoin-project/lotus/pull/11968 --- node/impl/full/eth_utils.go | 1 + 1 file changed, 1 insertion(+) diff --git a/node/impl/full/eth_utils.go b/node/impl/full/eth_utils.go index aac5ee3c7ec..a4b1c66bb84 100644 --- a/node/impl/full/eth_utils.go +++ b/node/impl/full/eth_utils.go @@ -411,6 +411,7 @@ func lookupEthAddress(addr address.Address, st *state.StateTree) (ethtypes.EthAd return ethAddr, nil } + // Otherwise, use the masked address. return ethtypes.EthAddressFromFilecoinAddress(idAddr) }