Updated on 2026-08-14

This commit is contained in:
Tangem 2018-12-14 13:29:48 +03:00
parent bba922bbc8
commit caa3140c0e

View file

@ -51,6 +51,7 @@ public class CashAddr {
if (!isValidCashAddress(bitcoinCashAddress)) {
throw new RuntimeException("Address wasn't valid: " + bitcoinCashAddress);
}
bitcoinCashAddress = bitcoinCashAddress.toLowerCase();
BitcoinCashAddressDecodedParts decoded = new BitcoinCashAddressDecodedParts();
String[] addressParts = bitcoinCashAddress.split(SEPARATOR);