Skip to content

Commit

Permalink
Some more cleanup and removal of unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Vandeberg committed Apr 6, 2016
1 parent bbf88b8 commit e8fdb81
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 365 deletions.
1 change: 0 additions & 1 deletion libraries/app/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ add_library( steemit_app
database_api.cpp
api.cpp
application.cpp
comment_api.cpp
impacted.cpp
plugin.cpp
${HEADERS}
Expand Down
95 changes: 0 additions & 95 deletions libraries/app/comment_api.cpp

This file was deleted.

249 changes: 0 additions & 249 deletions libraries/app/include/steemit/app/comment_api.hpp

This file was deleted.

17 changes: 0 additions & 17 deletions libraries/chain/include/steemit/chain/assert_evaluator.hpp

This file was deleted.

6 changes: 3 additions & 3 deletions libraries/plugins/witness/witness.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ void witness_plugin::plugin_set_program_options(
("miner,m", bpo::value<vector<string>>()->composing()->multitoken(), "name of miner and its private key (e.g. [\"account\",\"WIF PRIVATE KEY\"] )" )
("mining-threads,t", bpo::value<uint32_t>(),"Number of threads to use for proof of work mining" )
("private-key", bpo::value<vector<string>>()->composing()->multitoken(), "WIF PRIVATE KEY to be used by one or more witnesses or miners" )
("miner-account-creation-fee", bpo::value<uint64_t>(),"Account creation fee to be voted on upon successful POW - Minimum fee is 100.000 STEEM (written as 100000)")
("miner-maximum-block-size", bpo::value<uint32_t>(),"Maximum block size (in bytes) to be voted on upon successful POW - Max block size must be between 128 KB and 750 MB (131072)")
("miner-sbd-interest-rate", bpo::value<uint32_t>(),"SBD interest rate to be vote on upon successful POW - Default interest rate is 10% (written as 1000)")
("miner-account-creation-fee", bpo::value<uint64_t>()->implicit_value(100000),"Account creation fee to be voted on upon successful POW - Minimum fee is 100.000 STEEM (written as 100000)")
("miner-maximum-block-size", bpo::value<uint32_t>()->implicit_value(131072),"Maximum block size (in bytes) to be voted on upon successful POW - Max block size must be between 128 KB and 750 MB")
("miner-sbd-interest-rate", bpo::value<uint32_t>()->implicit_value(1000),"SBD interest rate to be vote on upon successful POW - Default interest rate is 10% (written as 1000)")
;
config_file_options.add(command_line_options);
}
Expand Down

0 comments on commit e8fdb81

Please sign in to comment.