Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

Commit

Permalink
Added (#303)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dean Eigenmann authored and Arachnid committed Oct 9, 2018
1 parent 54338f5 commit 9f0dc10
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions contracts/Deed.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ interface Deed {
function destroyDeed() public;

function owner() public view returns (address);
function previousOwner() public view returns (address);
function value() public view returns (uint);
function creationDate() public view returns (uint);

Expand Down
4 changes: 4 additions & 0 deletions contracts/DeedImplementation.sol
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ contract DeedImplementation is Deed {
return owner;
}

function previousOwner() public view returns (address) {
return previousOwner;
}

function value() public view returns (uint) {
return value;
}
Expand Down

0 comments on commit 9f0dc10

Please sign in to comment.