From 2d2c5b46af3f0a07389a27dd7916b0bc275bafb6 Mon Sep 17 00:00:00 2001 From: gruve-p Date: Fri, 10 Apr 2020 08:38:00 +0200 Subject: [PATCH] Support RBF and PayJoin for GRS (#1455) --- .../Altcoins/BTCPayNetworkProvider.Groestlcoin.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/BTCPayServer.Common/Altcoins/BTCPayNetworkProvider.Groestlcoin.cs b/BTCPayServer.Common/Altcoins/BTCPayNetworkProvider.Groestlcoin.cs index 3a1564634..f69ceb4c2 100644 --- a/BTCPayServer.Common/Altcoins/BTCPayNetworkProvider.Groestlcoin.cs +++ b/BTCPayServer.Common/Altcoins/BTCPayNetworkProvider.Groestlcoin.cs @@ -28,7 +28,9 @@ namespace BTCPayServer CryptoImagePath = "imlegacy/groestlcoin.png", LightningImagePath = "imlegacy/groestlcoin-lightning.svg", DefaultSettings = BTCPayDefaultSettings.GetDefaultSettings(NetworkType), - CoinType = NetworkType == NetworkType.Mainnet ? new KeyPath("17'") : new KeyPath("1'") + CoinType = NetworkType == NetworkType.Mainnet ? new KeyPath("17'") : new KeyPath("1'"), + SupportRBF = true, + SupportPayJoin = true }); } }