Skip to content

Commit c823709

Browse files
committed
Bugfix, fix contract name conflicts in oz and mocks
1 parent 3eb7af5 commit c823709

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

contracts/mocks/Multicall.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ pragma experimental ABIEncoderV2;
99
/// @author Joshua Levine <joshua@makerdao.com>
1010
/// @author Nick Johnson <arachnid@notdot.net>
1111

12-
contract Multicall {
12+
contract MulticallV1 {
1313
struct Call {
1414
address target;
1515
bytes callData;

deploy/mocks.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module.exports = async ({ getNamedAccounts, deployments }) => {
88
};
99

1010
await deploy('CallReceiverMock', deployConfig);
11-
await deploy('Multicall', deployConfig);
11+
await deploy('MulticallV1', deployConfig);
1212
};
1313

1414
module.exports.tags = ['Mocks'];

0 commit comments

Comments
 (0)