@@ -234,7 +252,7 @@
| Fee charged |
@{
- var fee = $"{round.CoordinationFeeRate.Rate * 100}% + Free remixing {(round.CoordinationFeeRate.PlebsDontPayThreshold <= 0 ? string.Empty : $"+ Free under {round.CoordinationFeeRate.PlebsDontPayThreshold.ToDecimal(MoneyUnit.BTC)} BTC")}";
+ var fee = $"{roundParameters.CoordinationFeeRate.Rate * 100}% + Free remixing {(roundParameters.CoordinationFeeRate.PlebsDontPayThreshold <= 0 ? string.Empty : $"+ Free under {roundParameters.CoordinationFeeRate.PlebsDontPayThreshold.ToDecimal(MoneyUnit.BTC)} BTC")}";
}
@(fee)
@@ -242,30 +260,30 @@
|
| Allowed input amounts |
- @round.AllowedInputAmounts.Min.ToDecimal(MoneyUnit.BTC) BTC - @round.AllowedInputAmounts.Max.ToDecimal(MoneyUnit.BTC) BTC |
+ @roundParameters.AllowedInputAmounts.Min.ToDecimal(MoneyUnit.BTC) BTC - @roundParameters.AllowedInputAmounts.Max.ToDecimal(MoneyUnit.BTC) BTC |
| Allowed input types |
- @string.Join(", ", round.AllowedInputTypes) |
+ @string.Join(", ", roundParameters.AllowedInputTypes) |
| Allowed output amounts |
- @round.AllowedOutputAmounts.Min.ToDecimal(MoneyUnit.BTC) BTC - @round.AllowedOutputAmounts.Max.ToDecimal(MoneyUnit.BTC) BTC |
+ @roundParameters.AllowedOutputAmounts.Min.ToDecimal(MoneyUnit.BTC) BTC - @roundParameters.AllowedOutputAmounts.Max.ToDecimal(MoneyUnit.BTC) BTC |
| Allowed output types |
- @string.Join(", ", round.AllowedOutputTypes) |
+ @string.Join(", ", roundParameters.AllowedOutputTypes) |
- | Minimum inputs | @round.MinInputCountByRound |
+ Minimum inputs | @roundParameters.MinInputCountByRound |
- | Maximum inputs | @round.MaxInputCountByRound |
+ Maximum inputs | @roundParameters.MaxInputCountByRound |
- | Maximum round registration time | @round.StandardInputRegistrationTimeout.ToString() |
+ Maximum round registration time | @roundParameters.StandardInputRegistrationTimeout.ToString() |
@@ -281,7 +299,7 @@
data-bs-toggle="modal" data-bs-target="#config-@s.Coordinator">
Coordinator Config
- @if (Model.Settings[index].RoundWhenEnabled is not null && !BTCPayWallet.IsRoundOk(round, Model.Settings[index]))
+ @if (Model.Settings[index].RoundWhenEnabled is not null && !BTCPayWallet.IsRoundOk(roundParameters, Model.Settings[index]))
{
Round fees/parameters changed. Coinjoins will not occur unless you accept the new parameters.
}
@@ -300,7 +318,7 @@
@{
var canEnable = coordinator.WasabiCoordinatorStatusFetcher.Connected && coordinator.RoundStateUpdater.AnyRound;
}
-