Skip to content
This repository was archived by the owner on Jan 4, 2024. It is now read-only.

Commit 0ec45a8

Browse files
committed
Add ECMA style imports to the metacoin folder
1 parent fbcfe70 commit 0ec45a8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/metacoin/contracts/WrappedMetaCoin.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// SPDX-License-Identifier: MIT
22
pragma solidity >=0.4.25 <0.7.0;
33

4-
import "./MetaCoin.sol";
4+
import { MetaCoin as Coin } from "./MetaCoin.sol";
55

66
contract WrappedMetaCoin {
7-
MetaCoin public underlying;
7+
Coin public underlying;
88

9-
constructor(MetaCoin _underlying) public {
9+
constructor(Coin _underlying) public {
1010
underlying = _underlying;
1111
}
1212

0 commit comments

Comments
 (0)