Easier payment testing (#2672)

* Easier payment testing

* WIP, more TODOs and some cleanup. Help is appreciated.

* Added dummy button to expire monitoring (doesn't work yet)

* Added TODO

* Make fake tab default if present

* Split controller and change wording from fake to testing

* Extract and simplify checkout testing UI

* Restrict testing access to regtest

Co-authored-by: Dennis Reimann <mail@dennisreimann.de>
This commit is contained in:
Wouter Samaey
2021-10-11 04:11:02 +02:00
committed by GitHub
parent 78a8c8c1be
commit e842a00402
9 changed files with 289 additions and 4 deletions

View File

@@ -0,0 +1,9 @@
using System;
namespace BTCPayServer.Client.Models
{
public class FakePaymentRequest
{
public Decimal Amount { get; set; }
}
}