sigma-usd
sigma-usd copied to clipboard
Not displaying the right error message for small buy attempts
SigRSV 1-5 = request.undefined SigRSV 5-13 = request. Too little value!
export const minErgVal = 33000
for (let i = 0; i < tx.requests.length; i++) {
if (tx.requests[i].value < minErgVal) throw new Error("The amount you're trying to mint is too small!")
}