Exemple #1
0
 public DestinationRequest(Script scriptPubKey, Money amount, bool subtractFee = false, SmartLabel?label = null) : this(scriptPubKey, MoneyRequest.Create(amount, subtractFee), label)
 {
 }
Exemple #2
0
 public DestinationRequest(IDestination destination, Money amount, bool subtractFee = false, SmartLabel?label = null) : this(destination, MoneyRequest.Create(amount, subtractFee), label)
 {
 }
Exemple #3
0
 public DestinationRequest(IDestination destination, MoneyRequest amount, SmartLabel?label = null)
 {
     Destination = destination;
     Amount      = amount;
     Label       = label ?? SmartLabel.Empty;
 }
Exemple #4
0
 public DestinationRequest(Script scriptPubKey, MoneyRequest amount, SmartLabel?label = null) : this(scriptPubKey.GetDestination(), amount, label)
 {
 }
Exemple #5
0
 public PaymentIntent(IDestination destination, MoneyRequest amount, SmartLabel label = null) : this(new DestinationRequest(destination, amount, label))
 {
 }
Exemple #6
0
 public PaymentIntent(Script scriptPubKey, MoneyRequest amount, SmartLabel label = null) : this(scriptPubKey.GetDestination(), amount, label)
 {
 }
Exemple #7
0
 public PaymentIntent(Script scriptPubKey, Money amount, bool subtractFee = false, SmartLabel label = null) : this(scriptPubKey, MoneyRequest.Create(amount, subtractFee), label)
 {
 }
 public DestinationRequest(IDestination destination, MoneyRequest amount, SmartLabel?label = null)
 {
     Destination = Guard.NotNull(nameof(destination), destination);
     Amount      = Guard.NotNull(nameof(amount), amount);
     Label       = label ?? SmartLabel.Empty;
 }