We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad96a5b commit c2452b8Copy full SHA for c2452b8
pkg/ccip/bindings/common/common.go
@@ -168,8 +168,7 @@ func (c *CrossChainAddress) LoadFromCell(s *cell.Slice) error {
168
return nil
169
}
170
171
-// LoadCrossChainAddressWithoutPrefix parses a CrossChainAddress from raw data that lacks a length prefix as the first byte.
172
-// TODO: check why getter is not including the first byte as length prefix for CrossChainAddress type
+// LoadCrossChainAddressWithoutPrefix parses a CrossChainAddress from raw data if lacks a length prefix as the first byte.
173
func LoadCrossChainAddressWithoutPrefix(s *cell.Slice) (CrossChainAddress, error) {
174
data, err := s.LoadSlice(s.BitsLeft())
175
if err != nil {
0 commit comments