This repository has been archived by the owner on Oct 4, 2019. It is now read-only.
forked from steemit/steem
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial golos.io compilable code modifications implemented.
- Loading branch information
1 parent
837963a
commit b12f63a
Showing
284 changed files
with
569,582 additions
and
90,671 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
Large diffs are not rendered by default.
Oops, something went wrong.
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.
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
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,33 +1,2 @@ | ||
seed.riversteem.com:2001 # riverhead | ||
seed.steempower.org:2001 # charlieshrem | ||
steem-seed1.abit-more.com:2001 # abit | ||
52.74.152.79:2001 # smooth.witness | ||
seed.steemd.com:34191 # roadscape | ||
steemd.pharesim.me:2001 # pharesim | ||
seed.jesta.us:2001 # jesta | ||
212.117.213.186:2016 # liondani | ||
anyx.co:2001 # anyx | ||
seed.xeldal.com:12150 # xeldal | ||
seed.steemnodes.com:2001 # wackou | ||
steem.clawmap.com:2001 # steempty | ||
gtg.steem.house:2001 # gtg | ||
52.4.250.181:39705 # lafona | ||
52.63.172.229:2001 # rossco99 | ||
212.47.249.84:40696 # ihashfury | ||
52.62.24.225:2001 # au1nethyb1 | ||
104.40.230.35:2001 # aizensou | ||
seed.roelandp.nl:2001 # roelandp | ||
81.89.101.133:2001 # cyrano.witness | ||
45.55.54.83:2001 # tdv.witness | ||
seed.steem.network:2001 # someguy123 | ||
46.252.27.1:1337 # jabbasteem | ||
steem.global:2001 # klye | ||
104.196.141.163:2001 # good-karma | ||
seed.royaltiffany.me:2001 # royaltiffany | ||
129.232.223.74:2001 # thecryptodrive | ||
steem-id.altexplorer.xyz:2001 # steem-id | ||
seed.bitcoiner.me:2001 # bitcoiner | ||
52.26.78.244:2001 # ? | ||
52.37.169.52:2001 # ? | ||
52.38.66.234:2001 # ? | ||
192.99.4.226:2001 # ? | ||
95.85.13.229:4242 | ||
95.85.33.35:4242 |
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,10 +1,10 @@ | ||
file(GLOB HEADERS "include/steemit/plugins/hello_api/*.hpp") | ||
|
||
add_library( hello_api | ||
${HEADERS} | ||
hello_api_plugin.cpp | ||
) | ||
add_library(hello_api | ||
${HEADERS} | ||
hello_api_plugin.cpp | ||
) | ||
|
||
target_link_libraries( hello_api steemit_app steemit_chain fc graphene_db ) | ||
target_include_directories( hello_api | ||
PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include" ) | ||
target_link_libraries(hello_api golos_app golos_chain fc graphene_db) | ||
target_include_directories(hello_api | ||
PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include") |
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,12 +1,12 @@ | ||
add_subdirectory( fc ) | ||
add_subdirectory( schema ) | ||
add_subdirectory( chainbase ) | ||
add_subdirectory( chain ) | ||
add_subdirectory( protocol ) | ||
add_subdirectory( net ) | ||
add_subdirectory( time ) | ||
add_subdirectory( utilities ) | ||
add_subdirectory( app ) | ||
add_subdirectory( plugins ) | ||
add_subdirectory( wallet ) | ||
add_subdirectory( manifest ) | ||
add_subdirectory(fc) | ||
add_subdirectory(schema) | ||
add_subdirectory(chainbase) | ||
add_subdirectory(chain) | ||
add_subdirectory(protocol) | ||
add_subdirectory(net) | ||
add_subdirectory(time) | ||
add_subdirectory(utilities) | ||
add_subdirectory(app) | ||
add_subdirectory(plugins) | ||
add_subdirectory(wallet) | ||
add_subdirectory(manifest) |
Oops, something went wrong.