Add config to flutter example (#274)

This commit is contained in:
Ross Savage
2024-06-03 18:46:19 +02:00
committed by GitHub
parent 04ac2c20e4
commit 0a8f2545db
4 changed files with 42 additions and 9 deletions

View File

@@ -112,7 +112,7 @@ class _SendPaymentDialogState extends State<SendPaymentDialog> {
try {
setState(() => paymentInProgress = true);
SendPaymentResponse resp = await widget.liquidSdk.sendPayment(req: sendPaymentReq!);
debugPrint("Paid ${resp.txid}");
debugPrint("Paid ${resp.payment.txId}");
if (context.mounted) {
Navigator.pop(context);
}