mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-03-22 15:19:11 +00:00
print->throw Exception
This commit is contained in:
parent
e559ee1cc5
commit
55e55ef8c8
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ mixin OrdinalsInterface {
|
||||||
await litescribeAPI.getInscriptionsByAddress(address);
|
await litescribeAPI.getInscriptionsByAddress(address);
|
||||||
allInscriptions.addAll(inscriptions);
|
allInscriptions.addAll(inscriptions);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
print("Error fetching inscriptions for address $address: $e");
|
throw Exception("Error fetching inscriptions for address $address: $e");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return allInscriptions;
|
return allInscriptions;
|
||||||
|
|
Loading…
Reference in a new issue