Pass payment tx hash in deployment request #19

Merged
nabarun merged 10 commits from iv-update-request into main 2024-10-29 09:12:40 +00:00
2 changed files with 2 additions and 4 deletions
Showing only changes of commit c6162cd036 - Show all commits

View File

@ -324,9 +324,7 @@ export class Registry {
paymentAddress: auctionWinner,
});
const newRecords = records.filter(record => {
record.names !== null
})
const newRecords = records.filter(record => record.names !== null);
for (const record of newRecords) {
if (record.id) {

View File

@ -221,7 +221,7 @@ const Configure = () => {
const isTxHashValid = await verifyTx(
senderAddress,
txHash,
amount.toString(),
amountToBePaid.toString(),
);
if (isTxHashValid === false) {