mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 09:47:37 +00:00
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:
parent
38c2415a61
commit
ce1bd8212f
1 changed files with 0 additions and 10 deletions
|
@ -91,14 +91,4 @@ mixin OrdinalsInterface {
|
|||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue