Merge pull request #4512 from wiz/fix-name-of-liquid-tetherusd

Fix name of L-USDT asset to Tether USD (Liquid)
This commit is contained in:
Christoph Atteneder 2020-09-10 17:09:56 +02:00 committed by GitHub
commit 9ab53eb099
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,6 +7,6 @@ public class TetherUSDLiquid extends Coin {
public TetherUSDLiquid() {
// If you add a new USDT variant or want to change this ticker symbol you should also look here:
// core/src/main/java/bisq/core/provider/price/PriceProvider.java:getAll()
super("Tether USD (Liquid Bitcoin)", "L-USDT", new LiquidBitcoinAddressValidator());
super("Tether USD (Liquid)", "L-USDT", new LiquidBitcoinAddressValidator());
}
}