Fix amount passed for verifying tx

This commit is contained in:
IshaVenikar 2024-11-12 11:50:43 +05:30
parent 1ab3a837f9
commit b3c0d2e64c

View File

@ -229,7 +229,7 @@ const Configure = () => {
}
// Validate transaction hash
const isTxHashValid = await verifyTx(senderAddress, txHash, amount);
const isTxHashValid = await verifyTx(senderAddress, txHash, amountToBePaid);
setIsPaymentLoading(false);
if (isTxHashValid) {