fix: project-lisa pending

This commit is contained in:
fiftyeightandeight
2024-04-30 09:56:18 +08:00
parent 4d8345b4b5
commit f49fafe2e7

View File

@@ -11,6 +11,6 @@ async function tvl() {
const reserve = await call({ reserveAddr, abi: 'get-reserve' });
const pending = await call({ registryAddr, abi: 'get-mint-requests-pending-amount'});
return {
blockstack: (reserve.value + pending.value) / 1e6
blockstack: (reserve.value + pending) / 1e6
}
}