Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Multicall module #2608

Merged
merged 18 commits into from
Apr 7, 2021
Prev Previous commit
Next Next commit
rename test case
  • Loading branch information
martriay committed Mar 25, 2021
commit d1518a93bb40c5515618e0ccffa0be6748cd7eff
2 changes: 1 addition & 1 deletion test/utils/BatchCall.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ contract('BatchCallToken', function (accounts) {
this.batchCallToken = await BatchCallTokenMock.new(new BN(amount), { from: deployer });
});

it('batches transactions', async function () {
it('batches function calls', async function () {
expect(await this.batchCallToken.balanceOf(alice)).to.be.bignumber.equal(new BN('0'));
expect(await this.batchCallToken.balanceOf(bob)).to.be.bignumber.equal(new BN('0'));

Expand Down