Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
make audit page faster
Browse files Browse the repository at this point in the history
  • Loading branch information
brewmaster012 committed Feb 6, 2024
1 parent 2cfc56e commit a8a17b8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion audit.js
Original file line number Diff line number Diff line change
Expand Up @@ -261,12 +261,16 @@ class AuditPage {
for (const i in this.zrc20s) {
const fcoin = this.zrc20s[i];
console.log("foreign coin", fcoin);
entry.appendChild(await this.TSSReserveComponent(fcoin));
// entry.appendChild(await this.TSSReserveComponent(fcoin));
this.TSSReserveComponent(fcoin).then((v) => {
entry.appendChild(v);
});
}
entry.appendChild(H1("ZETA Supply"));
entry.appendChild(await this.ZETASupplyComponent());



}
}

Expand Down

0 comments on commit a8a17b8

Please sign in to comment.