Skip to content
This repository has been archived by the owner on Jun 17, 2020. It is now read-only.

Commit

Permalink
Adjust Bch and Ella asset providers names.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernard Labno committed Mar 23, 2018
1 parent 7439f55 commit 8ba96b0
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import org.bitcoinj.core.Address;
import org.bitcoinj.core.AddressFormatException;

public class BchAddressValidator extends AbstractAssetProvider {
public class BchAssetProvider extends AbstractAssetProvider {

@Override
public String getCurrencyCode() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import bisq.core.payment.validation.AbstractAssetProvider;
import bisq.core.util.validation.InputValidator;

public class EllaAddressValidator extends AbstractAssetProvider {
public class EllaAssetProvider extends AbstractAssetProvider {

@Override
public String getCurrencyCode() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
bisq.core.payment.validation.altcoins.bch.BchAddressValidator
bisq.core.payment.validation.altcoins.ella.EllaAddressValidator
bisq.core.payment.validation.altcoins.bch.BchAssetProvider
bisq.core.payment.validation.altcoins.ella.EllaAssetProvider
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import static junit.framework.TestCase.assertFalse;
import static org.junit.Assert.assertTrue;

public class BchAddressValidatorTest extends AbstractAltcoinAddressValidatorTest {
public class BchAssetProviderTest extends AbstractAltcoinAddressValidatorTest {

@Test
public void testBCH() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import static junit.framework.TestCase.assertFalse;
import static org.junit.Assert.assertTrue;

public class EllaAddressValidatorTest extends AbstractAltcoinAddressValidatorTest {
public class EllaAssetProviderTest extends AbstractAltcoinAddressValidatorTest {

@Test
public void testELLA() {
Expand Down

0 comments on commit 8ba96b0

Please sign in to comment.