diff --git a/assets/src/main/java/bisq/asset/coins/BitcoinClashic.java b/assets/src/main/java/bisq/asset/coins/BitcoinClashic.java deleted file mode 100644 index 2517213d01b..00000000000 --- a/assets/src/main/java/bisq/asset/coins/BitcoinClashic.java +++ /dev/null @@ -1,28 +0,0 @@ -/* - * This file is part of Bisq. - * - * Bisq is free software: you can redistribute it and/or modify it - * under the terms of the GNU Affero General Public License as published by - * the Free Software Foundation, either version 3 of the License, or (at - * your option) any later version. - * - * Bisq is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public - * License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with Bisq. If not, see . - */ - -package bisq.asset.coins; - -import bisq.asset.Base58BitcoinAddressValidator; -import bisq.asset.Coin; - -public class BitcoinClashic extends Coin { - - public BitcoinClashic() { - super("Bitcoin Clashic", "BCHC", new Base58BitcoinAddressValidator()); - } -} diff --git a/assets/src/main/resources/META-INF/services/bisq.asset.Asset b/assets/src/main/resources/META-INF/services/bisq.asset.Asset index c35acb41b4e..642dcdb80b6 100644 --- a/assets/src/main/resources/META-INF/services/bisq.asset.Asset +++ b/assets/src/main/resources/META-INF/services/bisq.asset.Asset @@ -4,7 +4,6 @@ # See https://bisq.network/list-asset for complete instructions. bisq.asset.coins.Actinium bisq.asset.coins.Aeon -bisq.asset.coins.BitcoinClashic bisq.asset.coins.BitcoinRhodium bisq.asset.coins.Bitcoin$Mainnet bisq.asset.coins.Bitcoin$Regtest diff --git a/assets/src/test/java/bisq/asset/coins/BitcoinClashicTest.java b/assets/src/test/java/bisq/asset/coins/BitcoinClashicTest.java deleted file mode 100644 index d94e76b27f7..00000000000 --- a/assets/src/test/java/bisq/asset/coins/BitcoinClashicTest.java +++ /dev/null @@ -1,43 +0,0 @@ -/* - * This file is part of Bisq. - * - * Bisq is free software: you can redistribute it and/or modify it - * under the terms of the GNU Affero General Public License as published by - * the Free Software Foundation, either version 3 of the License, or (at - * your option) any later version. - * - * Bisq is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public - * License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with Bisq. If not, see . - */ - -package bisq.asset.coins; - -import bisq.asset.AbstractAssetTest; - -import org.junit.Test; - -public class BitcoinClashicTest extends AbstractAssetTest { - - public BitcoinClashicTest() { - super(new BitcoinClashic()); - } - - @Test - public void testValidAddresses() { - assertValidAddress("1HQQgsvLTgN9xD9hNmAgAreakzVzQUSLSH"); - assertValidAddress("1MEbUJ5v5MdDEqFJGz4SZp58KkaLdmXZ85"); - assertValidAddress("34dvotXMg5Gxc37TBVV2e5GUAfCFu7Ms4g"); - } - - @Test - public void testInvalidAddresses() { - assertInvalidAddress("21HQQgsvLTgN9xD9hNmAgAreakzVzQUSLSHa"); - assertInvalidAddress("1HQQgsvLTgN9xD9hNmAgAreakzVzQUSLSHs"); - assertInvalidAddress("1HQQgsvLTgN9xD9hNmAgAreakzVzQUSLSH#"); - } -}