(f *file.AssetFile)
| 264 | } |
| 265 | |
| 266 | func (s *Service) ValidateTokenListFile(f *file.AssetFile) error { |
| 267 | tokenListPath := f.Path() |
| 268 | tokenListExtendedPath := path.GetTokenListPath(f.Chain().Handle, path.TokenlistExtended) |
| 269 | |
| 270 | return validateTokenList(tokenListPath, tokenListExtendedPath, f.Chain()) |
| 271 | } |
| 272 | |
| 273 | func (s *Service) ValidateTokenListExtendedFile(f *file.AssetFile) error { |
| 274 | tokenListPathExtended := f.Path() |
nothing calls this directly
no test coverage detected