Skip to content
This repository has been archived by the owner on Sep 6, 2018. It is now read-only.

Commit

Permalink
Rename LobstexCoin to Lobstex
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeams committed Jun 30, 2018
1 parent 53ef8dd commit 057eca3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
import bisq.asset.Coin;
import bisq.asset.RegexAddressValidator;

public class LobstexCoin extends Coin {
public LobstexCoin() {
public class Lobstex extends Coin {

public Lobstex() {
super("Lobstex", "LOBS", new RegexAddressValidator("^L[1-9A-Za-z]{26,33}$"));
}
}
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/services/bisq.asset.Asset
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ bisq.asset.coins.LitecoinExtreme
bisq.asset.coins.Litecoin$Mainnet
bisq.asset.coins.Litecoin$Regtest
bisq.asset.coins.Litecoin$Testnet
bisq.asset.coins.LobstexCoin
bisq.asset.coins.Lobstex
bisq.asset.coins.Madbyte
bisq.asset.coins.Madcoin
bisq.asset.coins.MaidSafeCoin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@

import org.junit.Test;

public class LobstexCoinTest extends AbstractAssetTest {
public LobstexCoinTest() {
super(new LobstexCoin());
public class LobstexTest extends AbstractAssetTest {

public LobstexTest() {
super(new Lobstex());
}

@Test
Expand Down

0 comments on commit 057eca3

Please sign in to comment.