Skip to content

Commit

Permalink
MOVEONLY: core.o -> core/block.o
Browse files Browse the repository at this point in the history
  • Loading branch information
jtimon committed Oct 27, 2014
1 parent 561e9e9 commit 99f41b9
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ BITCOIN_CORE_H = \
coins.h \
compat.h \
compressor.h \
core.h \
core/block.h \
core/transaction.h \
core_io.h \
crypter.h \
Expand Down Expand Up @@ -215,7 +215,7 @@ libbitcoin_common_a_SOURCES = \
chainparams.cpp \
coins.cpp \
compressor.cpp \
core.cpp \
core/block.cpp \
core/transaction.cpp \
core_read.cpp \
core_write.cpp \
Expand Down
2 changes: 1 addition & 1 deletion src/chain.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#ifndef H_BITCOIN_CHAIN
#define H_BITCOIN_CHAIN

#include "core.h"
#include "core/block.h"
#include "pow.h"
#include "tinyformat.h"
#include "uint256.h"
Expand Down
2 changes: 1 addition & 1 deletion src/chainparams.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
#ifndef BITCOIN_CHAIN_PARAMS_H
#define BITCOIN_CHAIN_PARAMS_H

#include "core.h"
#include "chainparamsbase.h"
#include "checkpoints.h"
#include "core/block.h"
#include "protocol.h"
#include "uint256.h"

Expand Down
2 changes: 1 addition & 1 deletion src/core.cpp → src/core/block.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

#include "core.h"
#include "core/block.h"

#include "hash.h"
#include "tinyformat.h"
Expand Down
6 changes: 3 additions & 3 deletions src/core.h → src/core/block.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

#ifndef BITCOIN_CORE_H
#define BITCOIN_CORE_H
#ifndef H_BITCOIN_CORE_BLOCK
#define H_BITCOIN_CORE_BLOCK

#include "core/transaction.h"
#include "serialize.h"
Expand Down Expand Up @@ -165,4 +165,4 @@ struct CBlockLocator
}
};

#endif // BITCOIN_CORE_H
#endif // H_BITCOIN_CORE_BLOCK
2 changes: 1 addition & 1 deletion src/main.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include "chain.h"
#include "chainparams.h"
#include "coins.h"
#include "core.h"
#include "core/block.h"
#include "core/transaction.h"
#include "net.h"
#include "pow.h"
Expand Down
2 changes: 1 addition & 1 deletion src/miner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include "miner.h"

#include "amount.h"
#include "core.h"
#include "core/block.h"
#include "core/transaction.h"
#include "hash.h"
#include "main.h"
Expand Down
2 changes: 1 addition & 1 deletion src/pow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include "pow.h"

#include "chainparams.h"
#include "core.h"
#include "core/block.h"
#include "main.h"
#include "timedata.h"
#include "uint256.h"
Expand Down
2 changes: 1 addition & 1 deletion src/wallet.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#define BITCOIN_WALLET_H

#include "amount.h"
#include "core.h"
#include "core/block.h"
#include "core/transaction.h"
#include "crypter.h"
#include "key.h"
Expand Down

0 comments on commit 99f41b9

Please sign in to comment.