Required balance 0 from pending sell offers

This commit is contained in:
chalith
2024-02-02 16:59:17 +05:30
parent bf1695ba9e
commit 89337a096d

View File

@@ -490,7 +490,7 @@ const funcs = {
const registryAcc = new evernode.XrplAccount(hostClient.config.registryAddress);
const sellOffer = (await registryAcc.getURITokens()).find(o => o.Issuer == registryAcc.address && o.index == regInfo.uriTokenId && o.Amount);
if (sellOffer) {
return { success: true, result: '0.00000001' };
return { success: true, result: '0' };
}
}