add more openzeppelin-solidity library contracts

This commit is contained in:
Francisco Giordano
2018-05-18 20:54:43 -03:00
parent be101154fa
commit 39fe05dfad
17 changed files with 899 additions and 0 deletions

View File

@ -0,0 +1,11 @@
pragma solidity ^0.4.21;
import { MerkleProof } from "../MerkleProof.sol";
contract MerkleProofWrapper {
function verifyProof(bytes32[] _proof, bytes32 _root, bytes32 _leaf) public pure returns (bool) {
return MerkleProof.verifyProof(_proof, _root, _leaf);
}
}