mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 14:04:26 +01:00
* Refactoring to generalize wizard layout * Wallet: Add intermediate signing options view * Update BTCPayServer/Views/Wallets/WalletSigningOptions.cshtml Co-authored-by: britttttk <39231115+britttttk@users.noreply.github.com> * Skip signing options for hot wallets * Update signing options wordings, add PSBT doc link * Fix test * Remove form route params * Use decode command for PSBT Co-authored-by: britttttk <39231115+britttttk@users.noreply.github.com>
19 lines
521 B
C#
19 lines
521 B
C#
using System.Collections.Generic;
|
|
|
|
namespace BTCPayServer.Models.WalletViewModels
|
|
{
|
|
public class WalletSigningOptionsModel
|
|
{
|
|
public WalletSigningOptionsModel(
|
|
SigningContextModel signingContext,
|
|
IDictionary<string, string> routeDataBack)
|
|
{
|
|
SigningContext = signingContext;
|
|
RouteDataBack = routeDataBack;
|
|
}
|
|
|
|
public SigningContextModel SigningContext { get; }
|
|
public IDictionary<string, string> RouteDataBack { get; }
|
|
}
|
|
}
|