Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Build CI
on: [push, pull_request]

jobs:
build_lint:
build:
runs-on: ubuntu-latest

strategy:
Expand All @@ -16,7 +16,7 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: yarn install, build and lint
- name: yarn install and build
run: |
yarn install --frozen-lockfile
yarn build
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Lint

on: [push]
on: [push, pull_request]

jobs:
lint:
Expand Down
2 changes: 1 addition & 1 deletion src/strategies/defi-app-voting/examples.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
],
"snapshot": 31224505
}
]
]
8 changes: 6 additions & 2 deletions src/strategies/defi-app-voting/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,12 @@ export async function strategy(
const MFD_CONTRACT = options.lockingContract;
const HOME_TOKEN = options.homeToken;

const locksMulticaller = new Multicaller(network, provider, mfdAbi, { blockTag });
const homeMulticaller = new Multicaller(network, provider, erc20Abi, { blockTag });
const locksMulticaller = new Multicaller(network, provider, mfdAbi, {
blockTag
});
const homeMulticaller = new Multicaller(network, provider, erc20Abi, {
blockTag
});

addresses.forEach((address) => {
locksMulticaller.call(address, MFD_CONTRACT, 'getUserLocks', [address]);
Expand Down
Loading