From dc0e199d58bd29677a7e4914bb02acc2a029423e Mon Sep 17 00:00:00 2001 From: sairaj mote Date: Mon, 20 Nov 2023 14:05:48 +0530 Subject: [PATCH] Fixed btc to flo address conversion --- index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 04b1722..5fecfb5 100644 --- a/index.html +++ b/index.html @@ -1497,6 +1497,7 @@ let privateKeyConversionDescription = ''; let addressConversionDescription = null; let addressForConversion = '' + getRef('conversion_view_selector').value = convertingFrom switch (convertingFrom) { case 'flo': privateKeyConversionDescription = 'Convert FLO private key to corresponding BTC | ETH address & private key'; @@ -1637,7 +1638,7 @@ convertedTo = 'BTC' break; case 'btc': - convertedAddress = floCrypto.getFloID(addressToConvert); + convertedAddress = floCrypto.toFloID(addressToConvert); convertedTo = 'FLO' break; }