remove print
Some checks are pending
Cache Dependencies / test (push) Waiting to run

This commit is contained in:
OmarHatem 2024-12-31 08:06:56 +02:00
parent c880dbd83c
commit 26c1f0b85c

View file

@ -259,25 +259,13 @@ class AddressResolver {
}
}
print("@@@@@@@@");
print(formattedName);
print(domainParts);
print(name);
if (formattedName.contains(".")) {
if (settingsStore.lookupsOpenAlias) {
final txtRecord = await OpenaliasRecord.lookupOpenAliasRecord(formattedName);
print("@@@@@@@@");
print(txtRecord);
if (txtRecord != null) {
final record = await OpenaliasRecord.fetchAddressAndName(
formattedName: formattedName, ticker: ticker.toLowerCase(), txtRecord: txtRecord);
print("@@@@@@@@");
print(record);
print(record.name);
print(record.address);
print(record.description);
return ParsedAddress.fetchOpenAliasAddress(record: record, name: text);
}
}