From 07ae0a6e5261ec70a0fb4d71b2f8c9390d8e6577 Mon Sep 17 00:00:00 2001 From: Kukks Date: Mon, 13 Nov 2023 13:12:14 +0100 Subject: [PATCH] Make use of IsSufficientlyDistancedFromExternalKeys --- Plugins/BTCPayServer.Plugins.Wabisabi/Smartifier.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Plugins/BTCPayServer.Plugins.Wabisabi/Smartifier.cs b/Plugins/BTCPayServer.Plugins.Wabisabi/Smartifier.cs index ed154de..e4ba195 100644 --- a/Plugins/BTCPayServer.Plugins.Wabisabi/Smartifier.cs +++ b/Plugins/BTCPayServer.Plugins.Wabisabi/Smartifier.cs @@ -199,6 +199,7 @@ public class Smartifier hdPubKey.SetAnonymitySet(labels.anonset); var c = new SmartCoin(tx, coin.OutPoint.N, hdPubKey); + c.IsSufficientlyDistancedFromExternalKeys = labels.coinjoinData is not null; c.PropertyChanged += CoinPropertyChanged; return c; });