mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
3c80621dac
* Add payjoin option to hot wallet setup Enables payjoin by default when creating a hot wallet and offers the user an opt-out. Test fix * Display PayJoin option only if it is available * Test fixes * Update hot wallet checks * Test fix after rebase * Use toggle buttons for enabling options
11 lines
244 B
C#
11 lines
244 B
C#
using NBXplorer.Models;
|
|
|
|
namespace BTCPayServer.Models.StoreViewModels
|
|
{
|
|
public class WalletSetupRequest : GenerateWalletRequest
|
|
{
|
|
public bool PayJoinEnabled { get; set; }
|
|
public bool CanUsePayJoin { get; set; }
|
|
}
|
|
}
|