* update solidity-coverage to ^0.5.0 * update truffle dependency to ^4.1.8 * update solium to ^1.1.7 * update all contracts to solidity ^0.4.23
12 lines
273 B
Solidity
12 lines
273 B
Solidity
pragma solidity ^0.4.23;
|
|
|
|
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);
|
|
}
|
|
}
|