Merge pull request #1655 from pavlenex/utxo-change

Rename "Make sure no UTXO change is created" to "Don't create UTXO change"
This commit is contained in:
Nicolas Dorier
2020-06-12 14:50:38 +09:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -44,7 +44,7 @@ namespace BTCPayServer.Models.WalletViewModels
[Required]
public decimal? FeeSatoshiPerByte { get; set; }
[Display(Name = "Make sure no change UTXO is created")]
[Display(Name = "Don't create UTXO change")]
public bool NoChange { get; set; }
public decimal? Rate { get; set; }
public int Divisibility { get; set; }

View File

@@ -175,7 +175,7 @@
<div class="form-check">
<input asp-for="NoChange" class="form-check-input" />
<label asp-for="NoChange" class="form-check-label"></label>
<a href="https://docs.btcpayserver.org/features/wallet#make-sure-no-change-utxo-is-created-expert-mode" target="_blank">
<a href="https://docs.btcpayserver.org/Wallet/#don-t-create-utxo-change" target="_blank">
<span class="fa fa-question-circle-o" title="More information..."></span>
</a>
</div>