Bug fixes

This commit is contained in:
sairaj mote 2023-03-28 00:14:01 +05:30
parent 029b7a08bd
commit fb92bf3449
2 changed files with 4 additions and 4 deletions

View File

@ -51,7 +51,7 @@
</header>
<section id="verification_section" class="grid gap-1-5">
<div class="grid gap-0-5">
<h1>KYC verification</h1>
<h2>KYC verification</h2>
<P>
Enter the address you want to verify
</P>

View File

@ -87,7 +87,7 @@ floGlobals.approvedKycAggregators = {};
function getApprovedAggregators() {
return new Promise((resolve, reject) => {
floBlockchainAPI.readAllTxs(floGlobals.masterAddress).then(txs => {
txs.filter(tx => tx.vin[0].addr === floGlobals.masterAddress && tx.floData.startsWith('KYC'))
txs.filter(tx => floCrypto.isSameAddr(tx.vin[0].addr, floGlobals.masterAddress) && tx.floData.startsWith('KYC'))
.reverse()
.forEach(tx => {
const { floData, time } = tx;
@ -95,7 +95,7 @@ function getApprovedAggregators() {
switch (operationType) {
case 'APPROVE_AGGREGATOR':
operationData.split(',').forEach(aggregator => {
floGlobals.approvedKycAggregators[aggregator] = {
floGlobals.approvedKycAggregators[floCrypto.toFloID(aggregator)] = {
validFrom: time * 1000,
validTo: validity || Date.now() + 10000000
};
@ -103,7 +103,7 @@ function getApprovedAggregators() {
break;
case 'REVOKE_AGGREGATOR':
operationData.split(',').forEach(aggregator => {
floGlobals.approvedKycAggregators[aggregator].validTo = time * 1000;
floGlobals.approvedKycAggregators[floCrypto.toFloID(aggregator)].validTo = time * 1000;
});
break;
default: