Fix indentation in MerkleProof.sol and remove mock contract

This commit is contained in:
Yondon Fu
2017-06-15 11:10:37 -04:00
parent 2e0bd06da2
commit 30e202313d
2 changed files with 26 additions and 38 deletions

View File

@ -1,12 +0,0 @@
pragma solidity ^0.4.11;
import '../../contracts/MerkleProof.sol';
contract MerkleProofMock {
bool public result;
function verifyProof(bytes _proof, bytes32 _root, bytes32 _leaf) {
result = MerkleProof.verifyProof(_proof, _root, _leaf);
}
}