From 6dc4ebd2ad2803b055559b286ad8c1c408c24ddb Mon Sep 17 00:00:00 2001
From: Rod Vagg <rod@vagg.org>
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 aac5ee3c7..a4b1c66bb 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)
 }