forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 234
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move project files into src/omnicore/ and src/omnicore/test/
- Loading branch information
Showing
57 changed files
with
186 additions
and
188 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,44 @@ | ||
OMNICORE_H = \ | ||
mastercore.h \ | ||
mastercore_convert.h \ | ||
mastercore_dex.h \ | ||
mastercore_errors.h \ | ||
mastercore_log.h \ | ||
mastercore_mdex.h \ | ||
mastercore_parse_string.h \ | ||
mastercore_persistence.h \ | ||
mastercore_rpc.h \ | ||
mastercore_script.h \ | ||
mastercore_sp.h \ | ||
mastercore_tx.h \ | ||
mastercore_version.h \ | ||
omnicore_encoding.h \ | ||
omnicore_createpayload.h \ | ||
omnicore_pending.h \ | ||
omnicore_rpctx.h \ | ||
omnicore_utils.h | ||
omnicore/convert.h \ | ||
omnicore/createpayload.h \ | ||
omnicore/dex.h \ | ||
omnicore/encoding.h \ | ||
omnicore/errors.h \ | ||
omnicore/log.h \ | ||
omnicore/mdex.h \ | ||
omnicore/omnicore.h \ | ||
omnicore/parse_string.h \ | ||
omnicore/pending.h \ | ||
omnicore/persistence.h \ | ||
omnicore/rpc.h \ | ||
omnicore/rpctx.h \ | ||
omnicore/script.h \ | ||
omnicore/sp.h \ | ||
omnicore/tx.h \ | ||
omnicore/utils.h \ | ||
omnicore/version.h | ||
|
||
OMNICORE_CPP = \ | ||
mastercore.cpp \ | ||
mastercore_convert.cpp \ | ||
mastercore_dex.cpp \ | ||
mastercore_log.cpp \ | ||
mastercore_mdex.cpp \ | ||
mastercore_parse_string.cpp \ | ||
mastercore_persistence.cpp \ | ||
mastercore_rpc.cpp \ | ||
mastercore_script.cpp \ | ||
mastercore_sp.cpp \ | ||
mastercore_tx.cpp \ | ||
mastercore_version.cpp \ | ||
omnicore_encoding.cpp \ | ||
omnicore_createpayload.cpp \ | ||
omnicore_pending.cpp \ | ||
omnicore_rpctx.cpp \ | ||
omnicore_utils.cpp | ||
omnicore/convert.cpp \ | ||
omnicore/createpayload.cpp \ | ||
omnicore/dex.cpp \ | ||
omnicore/encoding.cpp \ | ||
omnicore/log.cpp \ | ||
omnicore/mdex.cpp \ | ||
omnicore/omnicore.cpp \ | ||
omnicore/parse_string.cpp \ | ||
omnicore/pending.cpp \ | ||
omnicore/persistence.cpp \ | ||
omnicore/rpc.cpp \ | ||
omnicore/rpctx.cpp \ | ||
omnicore/script.cpp \ | ||
omnicore/sp.cpp \ | ||
omnicore/tx.cpp \ | ||
omnicore/utils.cpp \ | ||
omnicore/version.cpp | ||
|
||
libbitcoin_server_a_SOURCES += \ | ||
$(OMNICORE_CPP) \ | ||
$(OMNICORE_H) | ||
|
||
libbitcoin_server_a-mastercore_version.$(OBJEXT): obj/build.h # build info | ||
libbitcoin_server_a-omnicore/version.$(OBJEXT): obj/build.h # build info |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#include "mastercore_convert.h" | ||
#include "omnicore/convert.h" | ||
|
||
#include <cmath> | ||
#include <stdint.h> | ||
|
File renamed without changes.
5 changes: 3 additions & 2 deletions
5
src/omnicore_createpayload.cpp → src/omnicore/createpayload.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#include "mastercore_log.h" | ||
#include "omnicore/log.h" | ||
|
||
#include "chainparamsbase.h" | ||
#include "util.h" | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/mastercore_parse_string.cpp → src/omnicore/parse_string.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#include "mastercore_parse_string.h" | ||
#include "omnicore/parse_string.h" | ||
|
||
#include <boost/lexical_cast.hpp> | ||
|
||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/mastercore_persistence.cpp → src/omnicore/persistence.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#include "mastercore_script.h" | ||
#include "omnicore/script.h" | ||
|
||
#include "amount.h" | ||
#include "script/script.h" | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/test/mastercore_create_payload_tests.cpp → src/omnicore/test/create_payload_tests.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#include "omnicore_createpayload.h" | ||
#include "omnicore/createpayload.h" | ||
|
||
#include "utilstrencodings.h" | ||
|
||
|
4 changes: 2 additions & 2 deletions
4
src/test/mastercore_encoding_c_tests.cpp → src/omnicore/test/encoding_c_tests.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.