Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Relative paths for importing contracts
  • Loading branch information
dob committed Feb 16, 2017
1 parent 8ec2363 commit 4053e20
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/AuctionHouse.sol
Expand Up @@ -5,7 +5,7 @@ pragma solidity ^0.4.2;
// for an item that conforms to the Asset interface described in
// Asset.sol

import "Asset.sol";
import "./Asset.sol";

contract AuctionHouse {

Expand Down
2 changes: 1 addition & 1 deletion contracts/SampleName.sol
Expand Up @@ -3,7 +3,7 @@ pragma solidity ^0.4.2;
// Sample implementation of a non fungible asset, which is a name resolved to
// an ethereum wallet address

import "Asset.sol";
import "./Asset.sol";

contract SampleName is Asset {
struct Record {
Expand Down

0 comments on commit 4053e20

Please sign in to comment.