Skip to content

Commit 8e272d7

Browse files
committed
bugfix
1 parent 5ea290e commit 8e272d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/rosswap/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ async function tvl(api) {
1212
const getReservesABI = 'function getReserves() view returns (uint112 _reserve0, uint112 _reserve1, uint32 _blockTimestampLast)'
1313

1414
const pairs = logs.map(log => log.pair)
15-
const res = await api.multiCall({ abi: getReservesABI, calls: pairs, permitFailure: true })
15+
const res = await api.multiCall({ abi: getReservesABI, calls: pairs, })
1616
const data = []
1717
res.forEach((r, i) => {
1818
if (!r) return;

0 commit comments

Comments
 (0)