Skip to content

Commit

Permalink
fix include guard
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank-GER committed Sep 26, 2023
1 parent 3a2d0a3 commit 17dc4b0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/kernel/disconnected_transactions.h
Expand Up @@ -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_KERNEL_DISCONNECTED_TRANSACTIONS_H
#define BITCOIN_KERNEL_DISCONNECTED_TRANSACTIONS_H
#ifndef SYSCOIN_KERNEL_DISCONNECTED_TRANSACTIONS_H
#define SYSCOIN_KERNEL_DISCONNECTED_TRANSACTIONS_H

#include <core_memusage.h>
#include <memusage.h>
Expand Down Expand Up @@ -134,4 +134,4 @@ class DisconnectedBlockTransactions {
return ret;
}
};
#endif // BITCOIN_KERNEL_DISCONNECTED_TRANSACTIONS_H
#endif // SYSCOIN_KERNEL_DISCONNECTED_TRANSACTIONS_H
6 changes: 3 additions & 3 deletions src/kernel/messagestartchars.h
Expand Up @@ -2,12 +2,12 @@
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

#ifndef BITCOIN_KERNEL_MESSAGESTARTCHARS_H
#define BITCOIN_KERNEL_MESSAGESTARTCHARS_H
#ifndef SYSCOIN_KERNEL_MESSAGESTARTCHARS_H
#define SYSCOIN_KERNEL_MESSAGESTARTCHARS_H

#include <array>
#include <cstdint>

using MessageStartChars = std::array<uint8_t, 4>;

#endif // BITCOIN_KERNEL_MESSAGESTARTCHARS_H
#endif // SYSCOIN_KERNEL_MESSAGESTARTCHARS_H

0 comments on commit 17dc4b0

Please sign in to comment.