Skip to content

Commit

Permalink
var to final
Browse files Browse the repository at this point in the history
  • Loading branch information
leo-lox committed Dec 23, 2024
1 parent bab3325 commit ea36e55
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/ndk/lib/domain_layer/usecases/zaps/zaps.dart
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ class Zaps {
ZapRequest? zapRequest,
String? comment,
http.Client? client}) async {
var lnurlResponse = await Lnurl.getLnurlResponse(lud16Link, client: client);
final lnurlResponse =
await Lnurl.getLnurlResponse(lud16Link, client: client);
if (lnurlResponse == null) {
return null;
}
Expand Down

0 comments on commit ea36e55

Please sign in to comment.