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

List ZeroOneCoin (ZOC) #25

Merged
merged 2 commits into from
Jun 29, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/main/java/bisq/asset/coins/ZeroOneCoin.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@

package bisq.asset.coins;

import bisq.asset.Coin;
import bisq.asset.Base58BitcoinAddressValidator;
import bisq.asset.Coin;
import bisq.asset.NetworkParametersAdapter;

public class ZeroOneCoin extends Coin {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This file does not conform to Bisq code style.


public ZeroOneCoin() {
super("01coin", "ZOC", new Base58BitcoinAddressValidator(new ZeroOneCoinAddressParams()));
}

public static class ZeroOneCoinAddressParams extends NetworkParametersAdapter {

public ZeroOneCoinAddressParams() {
Expand All @@ -35,4 +35,4 @@ public ZeroOneCoinAddressParams() {
acceptableAddressCodes = new int[]{addressHeader, p2shHeader};
}
}
}
}