Update Ether.java

Using EVMAddressValidator instead of EtherAddressValidator
This commit is contained in:
XMRZombie 2024-12-03 14:24:38 +00:00 committed by GitHub
parent 46687f3631
commit f9bc33ba64
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,11 +18,11 @@
package haveno.asset.coins; package haveno.asset.coins;
import haveno.asset.Coin; import haveno.asset.Coin;
import haveno.asset.EtherAddressValidator; import haveno.asset.EVMAddressValidator;
public class Ether extends Coin { public class Ether extends Coin {
public Ether() { public Ether() {
super("Ether", "ETH", new EtherAddressValidator()); super("Ether", "ETH", new EVMAddressValidator());
} }
} }