From bc3db5d4c11991b103899fc1fa266a2939c02135 Mon Sep 17 00:00:00 2001 From: Yondon Fu Date: Thu, 15 Jun 2017 11:13:37 -0400 Subject: [PATCH] Fix weird indent issue for inline assembly --- contracts/MerkleProof.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/MerkleProof.sol b/contracts/MerkleProof.sol index ca751a2a9..695ec4b2b 100644 --- a/contracts/MerkleProof.sol +++ b/contracts/MerkleProof.sol @@ -20,8 +20,8 @@ library MerkleProof { for (uint256 i = 32; i <= _proof.length; i += 32) { assembly { // Load the current element of the proof - proofElement := mload(add(_proof, i)) - } + proofElement := mload(add(_proof, i)) + } if (computedHash < proofElement) { // Hash(current computed hash + current element of the proof)