Fix indentation in MerkleProof.sol and remove mock contract

pull/260/head
Yondon Fu 8 years ago
parent 2e0bd06da2
commit 30e202313d
  1. 12
      test/helpers/MerkleProofMock.sol

@ -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);
}
}
Loading…
Cancel
Save