-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into annotate-rewards-tests
- Loading branch information
Showing
5 changed files
with
514 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
pragma solidity 0.8.9; | ||
|
||
import "../Leaf.sol"; | ||
|
||
contract LeafStub { | ||
function make( | ||
address operator, | ||
uint256 creationBlock, | ||
uint256 id | ||
) public pure returns (uint256) { | ||
return Leaf.make(operator, creationBlock, id); | ||
} | ||
|
||
function operator(uint256 leaf) public pure returns (address) { | ||
return Leaf.operator(leaf); | ||
} | ||
|
||
function creationBlock(uint256 leaf) public pure returns (uint256) { | ||
return Leaf.creationBlock(leaf); | ||
} | ||
|
||
function id(uint256 leaf) public pure returns (uint32) { | ||
return Leaf.id(leaf); | ||
} | ||
} |
Oops, something went wrong.