lint: Fix include guards

This commit is contained in:
Jack Grigg 2021-07-14 21:38:48 +01:00
parent ef5a37138e
commit 8e1fc6839d
1 changed files with 3 additions and 3 deletions

View File

@ -2,8 +2,8 @@
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_MERKLE
#define BITCOIN_MERKLE
#ifndef BITCOIN_CONSENSUS_MERKLE_H
#define BITCOIN_CONSENSUS_MERKLE_H
#include <stdint.h>
#include <vector>
@ -29,4 +29,4 @@ uint256 BlockMerkleRoot(const CBlock& block, bool* mutated = NULL);
*/
std::vector<uint256> BlockMerkleBranch(const CBlock& block, uint32_t position);
#endif
#endif // BITCOIN_CONSENSUS_MERKLE_H