remove print
OmarHatem committed
Dec 31, 2024 at 08:06 UTC
26c1f0b85c2e2de404d9a4597d69650510b3e7c4
1 file changed
-12
lib/entities/parse_address_from_domain.dart
-12
@@ -259,25 +259,13 @@ class AddressResolver {
259
}
260
}
261
262
- print("@@@@@@@@");
263
- print(formattedName);
264
- print(domainParts);
265
- print(name);
266
-
262
if (formattedName.contains(".")) {
263
if (settingsStore.lookupsOpenAlias) {
264
final txtRecord = await OpenaliasRecord.lookupOpenAliasRecord(formattedName);
265
271
- print("@@@@@@@@");
272
- print(txtRecord);
266
if (txtRecord != null) {
267
final record = await OpenaliasRecord.fetchAddressAndName(
268
formattedName: formattedName, ticker: ticker.toLowerCase(), txtRecord: txtRecord);
276
- print("@@@@@@@@");
277
- print(record);
278
- print(record.name);
279
- print(record.address);
280
- print(record.description);
269
return ParsedAddress.fetchOpenAliasAddress(record: record, name: text);
270
}
271
}