remove Future<bool> inscriptionInAddresses(List<String> addresses)

inscriptionInAddress is next, after its usage is removed from _updateUTXOs, updateUTXOs (or another hook for detecting if a refresh has detected a new output) will trigger the more general refreshInscriptions
This commit is contained in:
sneurlax 2023-07-23 23:18:23 -05:00
parent 38c2415a61
commit ce1bd8212f

View file

@ -91,14 +91,4 @@ mixin OrdinalsInterface {
return false; return false;
} }
} }
// check if an inscription is in a given <UTXO> output
Future<bool> inscriptionInAddresses(List<String> addresses) async {
var inscriptions = await _getInscriptionDataFromAddresses(addresses);
if (inscriptions.isNotEmpty) {
return true;
} else {
return false;
}
}
} }