Skip to content

Commit 1f8e0ef

Browse files
authored
Fix: Small fix Cian yield (DefiLlama#12423)
1 parent 9412aad commit 1f8e0ef

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

projects/cian-yl/index.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ module.exports = {
1818

1919
Object.keys(config).forEach((chain) => {
2020
module.exports[chain] = {
21-
tvl: async (_, _b, _cb, { api }) => {
22-
return api.erc4626Sum({ calls: config[chain], isOG4626: true });
23-
},
21+
tvl: async (api) => api.erc4626Sum({ calls: config[chain], isOG4626: true, permitFailure: true })
2422
};
2523
});

0 commit comments

Comments
 (0)