diff --git a/libraries/app/config_util.cpp b/libraries/app/config_util.cpp index f06291b788..67b1a03040 100644 --- a/libraries/app/config_util.cpp +++ b/libraries/app/config_util.cpp @@ -209,7 +209,7 @@ static void load_config_file(const fc::path& config_ini_path, const bpo::options bpo::variables_map& options ) { deduplicator dedup; - bpo::options_description unique_options("Graphene Witness Node"); + bpo::options_description unique_options("BitShares Witness Node"); for( const boost::shared_ptr opt : cfg_options.options() ) { const boost::shared_ptr od = dedup.next(opt); diff --git a/libraries/plugins/witness/witness.cpp b/libraries/plugins/witness/witness.cpp index 05bbb9564d..d2609625ab 100644 --- a/libraries/plugins/witness/witness.cpp +++ b/libraries/plugins/witness/witness.cpp @@ -47,7 +47,7 @@ void new_chain_banner( const graphene::chain::database& db ) "********************************\n" "* *\n" "* ------- NEW CHAIN ------ *\n" - "* - Welcome to Graphene! - *\n" + "* - Welcome to BitShares! - *\n" "* ------------------------ *\n" "* *\n" "********************************\n" diff --git a/libraries/protocol/include/graphene/protocol/asset.hpp b/libraries/protocol/include/graphene/protocol/asset.hpp index 657a17c896..9b0b9fea48 100644 --- a/libraries/protocol/include/graphene/protocol/asset.hpp +++ b/libraries/protocol/include/graphene/protocol/asset.hpp @@ -100,13 +100,13 @@ namespace graphene { namespace protocol { }; /** - * @brief The price struct stores asset prices in the Graphene system. + * @brief The price struct stores asset prices in the BitShares system. * * A price is defined as a ratio between two assets, and represents a possible exchange rate between those two * assets. prices are generally not stored in any simplified form, i.e. a price of (1000 CORE)/(20 USD) is perfectly * normal. * - * The assets within a price are labeled base and quote. Throughout the Graphene code base, the convention used is + * The assets within a price are labeled base and quote. Throughout the BitShares code base, the convention used is * that the base asset is the asset being sold, and the quote asset is the asset being purchased, where the price is * represented as base/quote, so in the example price above the seller is looking to sell CORE asset and get USD in * return. diff --git a/libraries/protocol/include/graphene/protocol/proposal.hpp b/libraries/protocol/include/graphene/protocol/proposal.hpp index 9f862fe46c..a1a7b27e1f 100644 --- a/libraries/protocol/include/graphene/protocol/proposal.hpp +++ b/libraries/protocol/include/graphene/protocol/proposal.hpp @@ -27,10 +27,10 @@ namespace graphene { namespace protocol { /** - * @defgroup proposed_transactions The Graphene Transaction Proposal Protocol + * @defgroup proposed_transactions The BitShares Transaction Proposal Protocol * @ingroup operations * - * Graphene allows users to propose a transaction which requires approval of multiple accounts in order to execute. + * BitShares allows users to propose a transaction which requires approval of multiple accounts in order to execute. * The user proposes a transaction using proposal_create_operation, then signatory accounts use * proposal_update_operations to add or remove their approvals from this operation. When a sufficient number of * approvals have been granted, the operations in the proposal are used to create a virtual transaction which is diff --git a/libraries/protocol/include/graphene/protocol/vote.hpp b/libraries/protocol/include/graphene/protocol/vote.hpp index b9f5c1be44..de1e4bce86 100644 --- a/libraries/protocol/include/graphene/protocol/vote.hpp +++ b/libraries/protocol/include/graphene/protocol/vote.hpp @@ -44,7 +44,7 @@ namespace graphene { namespace protocol { * * In JSON, a vote_id_type is represented as a string "type:instance", i.e. "1:5" would be type 1 and instance 5. * - * @note In the Graphene protocol, vote_id_type instances are unique across types; that is to say, if an object of + * @note In the BitShares protocol, vote_id_type instances are unique across types; that is to say, if an object of * type 1 has instance 4, an object of type 0 may not also have instance 4. In other words, the type is not a * namespace for instances; it is only an informational field. */ diff --git a/libraries/protocol/include/graphene/protocol/worker.hpp b/libraries/protocol/include/graphene/protocol/worker.hpp index 6eabf9258b..05693c3569 100644 --- a/libraries/protocol/include/graphene/protocol/worker.hpp +++ b/libraries/protocol/include/graphene/protocol/worker.hpp @@ -31,7 +31,7 @@ namespace graphene { namespace protocol { * @defgroup workers The Blockchain Worker System * @ingroup operations * - * Graphene blockchains allow the creation of special "workers" which are elected positions paid by the blockchain + * BitShares blockchains allow the creation of special "workers" which are elected positions paid by the blockchain * for services they provide. There may be several types of workers, and the semantics of how and when they are paid * are defined by the @ref worker_type_enum enumeration. All workers are elected by core stakeholder approval, by * voting for or against them. diff --git a/libraries/wallet/Doxyfile.in b/libraries/wallet/Doxyfile.in index d83573229f..36c9ac5c5c 100644 --- a/libraries/wallet/Doxyfile.in +++ b/libraries/wallet/Doxyfile.in @@ -32,7 +32,7 @@ DOXYFILE_ENCODING = UTF-8 # title of most generated pages and in a few other places. # The default value is: My Project. -PROJECT_NAME = "Graphene Wallet API" +PROJECT_NAME = "BitShares Wallet API" # The PROJECT_NUMBER tag can be used to enter a project or revision number. This # could be handy for archiving the generated documentation or if some version diff --git a/libraries/wallet/include/graphene/wallet/wallet.hpp b/libraries/wallet/include/graphene/wallet/wallet.hpp index f8d622fbda..1065e77711 100644 --- a/libraries/wallet/include/graphene/wallet/wallet.hpp +++ b/libraries/wallet/include/graphene/wallet/wallet.hpp @@ -798,7 +798,7 @@ class wallet_api */ string gethelp(const string& method)const; - /** Loads a specified Graphene wallet. + /** Loads a specified BitShares wallet. * * The current wallet is closed before the new wallet is loaded. * @@ -1225,7 +1225,7 @@ class wallet_api /** Place a limit order attempting to sell one asset for another. * - * Buying and selling are the same operation on Graphene; if you want to buy BTS + * Buying and selling are the same operation on BitShares; if you want to buy BTS * with USD, you should sell USD for BTS. * * The blockchain will attempt to sell the \c symbol_to_sell for as diff --git a/programs/genesis_util/genesis_update.cpp b/programs/genesis_util/genesis_update.cpp index d35547bfde..3100e2dd46 100644 --- a/programs/genesis_util/genesis_update.cpp +++ b/programs/genesis_util/genesis_update.cpp @@ -58,7 +58,7 @@ int main( int argc, char** argv ) { try { - bpo::options_description cli_options("Graphene empty blocks"); + bpo::options_description cli_options("BitShares empty blocks"); cli_options.add_options() ("help,h", "Print this help message and exit.") ("genesis-json,g", bpo::value(), "File to read genesis state from") diff --git a/programs/witness_node/main.cpp b/programs/witness_node/main.cpp index 506cf9146b..845087968b 100644 --- a/programs/witness_node/main.cpp +++ b/programs/witness_node/main.cpp @@ -63,8 +63,8 @@ int main(int argc, char** argv) { app::application* node = new app::application(); fc::oexception unhandled_exception; try { - bpo::options_description app_options("Graphene Witness Node"); - bpo::options_description cfg_options("Graphene Witness Node"); + bpo::options_description app_options("BitShares Witness Node"); + bpo::options_description cfg_options("BitShares Witness Node"); app_options.add_options() ("help,h", "Print this help message and exit.") ("data-dir,d", bpo::value()->default_value("witness_node_data_dir"), diff --git a/tests/app/main.cpp b/tests/app/main.cpp index b85b847ae5..3636aa55b0 100644 --- a/tests/app/main.cpp +++ b/tests/app/main.cpp @@ -64,7 +64,7 @@ BOOST_AUTO_TEST_CASE(load_configuration_options_test_config_logging_files_create auto node = new app::application(); bpo::options_description cli, cfg; node->set_program_options(cli, cfg); - bpo::options_description cfg_options("Graphene Witness Node"); + bpo::options_description cfg_options("BitShares Witness Node"); cfg_options.add(cfg); /// check preconditions diff --git a/tests/benchmarks/main.cpp b/tests/benchmarks/main.cpp index 479fb3371d..85e21ee02e 100644 --- a/tests/benchmarks/main.cpp +++ b/tests/benchmarks/main.cpp @@ -21,6 +21,6 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ -#define BOOST_TEST_MODULE "C++ Benchmarks for Graphene Blockchain Database" +#define BOOST_TEST_MODULE "C++ Benchmarks for BitShares Blockchain Database" #include diff --git a/tests/generate_empty_blocks/main.cpp b/tests/generate_empty_blocks/main.cpp index 7b4f3077fa..bcb831725c 100644 --- a/tests/generate_empty_blocks/main.cpp +++ b/tests/generate_empty_blocks/main.cpp @@ -57,7 +57,7 @@ int main( int argc, char** argv ) { try { - bpo::options_description cli_options("Graphene empty blocks"); + bpo::options_description cli_options("BitShares empty blocks"); cli_options.add_options() ("help,h", "Print this help message and exit.") ("data-dir", bpo::value()->default_value("empty_blocks_data_dir"), "Directory containing generator database")