mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-29 02:44:21 +01:00
Fix build warnings and flaky tests (#5780)
* Make checkout v2 selenium tests more robust * Fix build warnings * Make payjoin test more robust * Make LNURL test more robust
This commit is contained in:
@@ -95,8 +95,10 @@ public class LegacyInvoiceExportReportProvider : ReportProvider
|
||||
data.Add(invoiceEntity.Metadata.ItemCode);
|
||||
data.Add(invoiceEntity.Metadata.ItemDesc);
|
||||
data.Add(invoiceEntity.GetInvoiceState().ToString());
|
||||
#pragma warning disable CS0618 // Type or member is obsolete
|
||||
data.Add(invoiceEntity.StatusString);
|
||||
data.Add(invoiceEntity.ExceptionStatusString);
|
||||
#pragma warning restore CS0618 // Type or member is obsolete
|
||||
data.Add(invoiceEntity.Metadata.BuyerEmail);
|
||||
data.Add(payment.Accounted);
|
||||
}
|
||||
@@ -127,8 +129,10 @@ public class LegacyInvoiceExportReportProvider : ReportProvider
|
||||
data.Add(invoiceEntity.Metadata.ItemCode);
|
||||
data.Add(invoiceEntity.Metadata.ItemDesc);
|
||||
data.Add(invoiceEntity.GetInvoiceState().ToString());
|
||||
#pragma warning disable CS0618 // Type or member is obsolete
|
||||
data.Add(invoiceEntity.StatusString);
|
||||
data.Add(invoiceEntity.ExceptionStatusString);
|
||||
#pragma warning restore CS0618 // Type or member is obsolete
|
||||
data.Add(invoiceEntity.Metadata.BuyerEmail);
|
||||
data.Add(null); // Accounted
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user