diff --git a/src/bech32.h b/src/bech32.h index 7ef7b2221..2e2823e97 100644 --- a/src/bech32.h +++ b/src/bech32.h @@ -9,6 +9,9 @@ // // For more information, see BIP 173. +#ifndef BITCOIN_BECH32_H +#define BITCOIN_BECH32_H + #include #include #include @@ -23,3 +26,5 @@ std::string Encode(const std::string& hrp, const std::vector& values); std::pair> Decode(const std::string& str); } // namespace bech32 + +#endif // BITCOIN_BECH32_H