diff --git a/CMakeLists.txt b/CMakeLists.txt index f0ee46d..43e2676 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ set(VERSION "0.1") set(COMMIT 32f5466) set(REFS " (HEAD -> master)") -project(bitnote) +project(cryonote) set_property(GLOBAL PROPERTY USE_FOLDERS ON) set(CMAKE_CONFIGURATION_TYPES "Debug;Release") diff --git a/README.md b/README.md index e6a1c40..84f41aa 100755 --- a/README.md +++ b/README.md @@ -11,11 +11,11 @@ CryoNote is a private, secure, untraceable, decentralised digital currency. You **Security:** Using the power of a distributed peer-to-peer consensus network, every transaction on the network is cryptographically secured. Individual wallets have a 25 word mnemonic seed that is only displayed once, and can be written down to backup the wallet. Wallet files are encrypted with a passphrase to ensure they are useless if stolen. -**Untraceability:** By taking advantage of ring signatures, a special property of a certain type of cryptography, Bitnote is able to ensure that transactions are not only untraceable, but have an optional measure of ambiguity that ensures that transactions cannot easily be tied back to an individual user or computer. +**Untraceability:** By taking advantage of ring signatures, a special property of a certain type of cryptography, CryoNote is able to ensure that transactions are not only untraceable, but have an optional measure of ambiguity that ensures that transactions cannot easily be tied back to an individual user or computer. ## About this Project -This is the core implementation of CryoNote. It is open source and completely free to use without restrictions, except for those specified in the license agreement below. There are no restrictions on anyone creating an alternative implementation of Bitnote that uses the protocol and network in a compatible manner. +This is the core implementation of CryoNote. It is open source and completely free to use without restrictions, except for those specified in the license agreement below. There are no restrictions on anyone creating an alternative implementation of CryoNote that uses the protocol and network in a compatible manner. As with many development projects, the repository on Github is considered to be the "staging" area for the latest changes. Before changes are merged into that branch on the main repository, they are tested by individual developers in their own branches, submitted as a pull request, and then subsequently tested by contributors who focus on testing and code reviews. That having been said, the repository should be carefully considered before using it in a production environment, unless there is a patch in the repository for a particular show-stopping issue you are experiencing. It is generally a better idea to use a tagged release for stability. diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index f0711bb..cfe9fc9 100755 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -43,4 +43,4 @@ add_dependencies(simplewallet version) set_property(TARGET common crypto cryptonote_core rpc wallet PROPERTY FOLDER "libs") set_property(TARGET daemon simplewallet connectivity_tool PROPERTY FOLDER "prog") -set_property(TARGET daemon PROPERTY OUTPUT_NAME "bitnoted") +set_property(TARGET daemon PROPERTY OUTPUT_NAME "cryonoted") diff --git a/src/common/base58.cpp b/src/common/base58.cpp index e9fd7be..d2c42a1 100755 --- a/src/common/base58.cpp +++ b/src/common/base58.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/common/base58.hpp b/src/common/base58.hpp index 9d8a7ae..7a540aa 100755 --- a/src/common/base58.hpp +++ b/src/common/base58.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/common/boost_serialization_helper.h b/src/common/boost_serialization_helper.h index f7ce850..447248a 100755 --- a/src/common/boost_serialization_helper.h +++ b/src/common/boost_serialization_helper.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/common/command_line.cpp b/src/common/command_line.cpp index 836cea4..51ab008 100755 --- a/src/common/command_line.cpp +++ b/src/common/command_line.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/common/command_line.hpp b/src/common/command_line.hpp index 8882915..5f920f6 100755 --- a/src/common/command_line.hpp +++ b/src/common/command_line.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/common/int-util.h b/src/common/int-util.h index d2ea6ab..4f72792 100755 --- a/src/common/int-util.h +++ b/src/common/int-util.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/common/pod-class.h b/src/common/pod-class.h index e0719fb..a4c8952 100755 --- a/src/common/pod-class.h +++ b/src/common/pod-class.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/common/unordered_containers_boost_serialization.h b/src/common/unordered_containers_boost_serialization.h index cab4924..507019a 100755 --- a/src/common/unordered_containers_boost_serialization.h +++ b/src/common/unordered_containers_boost_serialization.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/common/util.cpp b/src/common/util.cpp index a0cfc71..823e8ee 100755 --- a/src/common/util.cpp +++ b/src/common/util.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/common/util.hpp b/src/common/util.hpp index b81dc83..282aac4 100755 --- a/src/common/util.hpp +++ b/src/common/util.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/common/varint.h b/src/common/varint.h index d06d3cd..7f6269a 100755 --- a/src/common/varint.h +++ b/src/common/varint.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/connectivity_tool/conn_tool.cpp b/src/connectivity_tool/conn_tool.cpp index 617e70d..683e307 100755 --- a/src/connectivity_tool/conn_tool.cpp +++ b/src/connectivity_tool/conn_tool.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/crypto/chacha8.h b/src/crypto/chacha8.h index 9916250..1ce4404 100755 --- a/src/crypto/chacha8.h +++ b/src/crypto/chacha8.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/crypto/crypto-ops-data.c b/src/crypto/crypto-ops-data.c index a650772..7f24e17 100755 --- a/src/crypto/crypto-ops-data.c +++ b/src/crypto/crypto-ops-data.c @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/crypto/crypto-ops.c b/src/crypto/crypto-ops.c index 3405001..d021cd7 100755 --- a/src/crypto/crypto-ops.c +++ b/src/crypto/crypto-ops.c @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/crypto/crypto-ops.h b/src/crypto/crypto-ops.h index d44c28e..f122272 100755 --- a/src/crypto/crypto-ops.h +++ b/src/crypto/crypto-ops.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/crypto/crypto.cpp b/src/crypto/crypto.cpp index 3905647..525684c 100755 --- a/src/crypto/crypto.cpp +++ b/src/crypto/crypto.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/crypto/crypto.h b/src/crypto/crypto.h index 55446ba..0a31635 100755 --- a/src/crypto/crypto.h +++ b/src/crypto/crypto.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/crypto/generic-ops.h b/src/crypto/generic-ops.h index f3ee373..4c0dfcc 100755 --- a/src/crypto/generic-ops.h +++ b/src/crypto/generic-ops.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/crypto/hash-extra-blake.c b/src/crypto/hash-extra-blake.c index 6d84cf2..92adadb 100755 --- a/src/crypto/hash-extra-blake.c +++ b/src/crypto/hash-extra-blake.c @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/crypto/hash-extra-groestl.c b/src/crypto/hash-extra-groestl.c index 534a9f7..1cdbc60 100755 --- a/src/crypto/hash-extra-groestl.c +++ b/src/crypto/hash-extra-groestl.c @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/crypto/hash-extra-jh.c b/src/crypto/hash-extra-jh.c index 4269174..fb348d4 100755 --- a/src/crypto/hash-extra-jh.c +++ b/src/crypto/hash-extra-jh.c @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/crypto/hash-extra-skein.c b/src/crypto/hash-extra-skein.c index c6ae9c6..66cf161 100755 --- a/src/crypto/hash-extra-skein.c +++ b/src/crypto/hash-extra-skein.c @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/crypto/hash-ops.h b/src/crypto/hash-ops.h index e2b94dd..c18dc9e 100755 --- a/src/crypto/hash-ops.h +++ b/src/crypto/hash-ops.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/crypto/hash.c b/src/crypto/hash.c index 57341e6..37d893f 100755 --- a/src/crypto/hash.c +++ b/src/crypto/hash.c @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/crypto/hash.h b/src/crypto/hash.h index 50579af..cb81f1f 100755 --- a/src/crypto/hash.h +++ b/src/crypto/hash.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/crypto/initializer.h b/src/crypto/initializer.h index 7ecb6a8..d3e42a1 100755 --- a/src/crypto/initializer.h +++ b/src/crypto/initializer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/crypto/random.c b/src/crypto/random.c index 61a3aa5..449bd60 100755 --- a/src/crypto/random.c +++ b/src/crypto/random.c @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/crypto/random.h b/src/crypto/random.h index 0db5b0d..b0d11b0 100755 --- a/src/crypto/random.h +++ b/src/crypto/random.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/crypto/slow-hash.c b/src/crypto/slow-hash.c index 60b2676..e189a27 100755 --- a/src/crypto/slow-hash.c +++ b/src/crypto/slow-hash.c @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/crypto/tree-hash.c b/src/crypto/tree-hash.c index 4397420..ee749c9 100755 --- a/src/crypto/tree-hash.c +++ b/src/crypto/tree-hash.c @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_config.h b/src/cryptonote_config.h index a6f26f7..43157be 100755 --- a/src/cryptonote_config.h +++ b/src/cryptonote_config.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. @@ -34,7 +34,7 @@ #define CRYPTONOTE_CURRENT_BLOCK_MINOR_VERSION 0 #define CRYPTONOTE_BLOCK_FUTURE_TIME_LIMIT 60*60*2 #define CRYPTONOTE_DEFAULT_TX_SPENDABLE_AGE 10 -#define CRYPTONOTE_HARDFORK_HEIGHT_1 30100 +#define CRYPTONOTE_HARDFORK_HEIGHT_V1 30100 #define CRYPTONOTE_BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW 15 #define MONEY_SUPPLY ((uint64_t)1200000000000000) @@ -71,8 +71,8 @@ #define CRYPTONOTE_GENESIS_NONCE 10000 #define CRYPTONOTE_GENESIS_REWARD ((uint64_t)100000000000000) -#define CRYPTONOTE_P2P_DEFAULT_PORT 11551 -#define CRYPTONOTE_RPC_DEFAULT_PORT 11552 +#define CRYPTONOTE_P2P_DEFAULT_PORT 5551 +#define CRYPTONOTE_RPC_DEFAULT_PORT 5552 #define CRYPTONOTE_RPC_COMMAND_GET_BLOCKS_FAST_MAX_COUNT 1000 #define CRYPTONOTE_RPC_WALLET_CONNECTION_TIMEOUT 200000 @@ -103,7 +103,7 @@ #define ALLOW_DEBUG_COMMANDS -#define CRYPTONOTE_NAME "bitnote" +#define CRYPTONOTE_NAME "cryonote" #define CRYPTONOTE_POOLDATA_FILENAME "poolstate.bin" #define CRYPTONOTE_BLOCKCHAINDATA_FILENAME "blockchain.bin" #define CRYPTONOTE_BLOCKCHAINDATA_TEMP_FILENAME "blockchain.bin.tmp" diff --git a/src/cryptonote_core/account.cpp b/src/cryptonote_core/account.cpp index 522eb81..43ea306 100755 --- a/src/cryptonote_core/account.cpp +++ b/src/cryptonote_core/account.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_core/account.hpp b/src/cryptonote_core/account.hpp index 2fa975b..352840b 100755 --- a/src/cryptonote_core/account.hpp +++ b/src/cryptonote_core/account.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_core/account_boost_serialization.h b/src/cryptonote_core/account_boost_serialization.h index a2c1ef7..c738131 100755 --- a/src/cryptonote_core/account_boost_serialization.h +++ b/src/cryptonote_core/account_boost_serialization.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_core/blockchain_storage.cpp b/src/cryptonote_core/blockchain_storage.cpp index 7d20306..d9ed32c 100755 --- a/src/cryptonote_core/blockchain_storage.cpp +++ b/src/cryptonote_core/blockchain_storage.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_core/blockchain_storage.hpp b/src/cryptonote_core/blockchain_storage.hpp index d4969d0..88abe40 100755 --- a/src/cryptonote_core/blockchain_storage.hpp +++ b/src/cryptonote_core/blockchain_storage.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_core/blockchain_storage_boost_serialization.h b/src/cryptonote_core/blockchain_storage_boost_serialization.h index 0004ea2..469cb01 100755 --- a/src/cryptonote_core/blockchain_storage_boost_serialization.h +++ b/src/cryptonote_core/blockchain_storage_boost_serialization.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_core/checkpoints.cpp b/src/cryptonote_core/checkpoints.cpp index ea731be..560b90d 100755 --- a/src/cryptonote_core/checkpoints.cpp +++ b/src/cryptonote_core/checkpoints.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_core/checkpoints.hpp b/src/cryptonote_core/checkpoints.hpp index 55868d1..b34c0d1 100755 --- a/src/cryptonote_core/checkpoints.hpp +++ b/src/cryptonote_core/checkpoints.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_core/checkpoints_create.h b/src/cryptonote_core/checkpoints_create.h index 4be0e71..ec6f221 100755 --- a/src/cryptonote_core/checkpoints_create.h +++ b/src/cryptonote_core/checkpoints_create.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_core/connection_context.h b/src/cryptonote_core/connection_context.h index 744a9ea..b655f85 100755 --- a/src/cryptonote_core/connection_context.h +++ b/src/cryptonote_core/connection_context.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_core/cryptonote_basic.h b/src/cryptonote_core/cryptonote_basic.h index 2326a3f..dbf6c3a 100755 --- a/src/cryptonote_core/cryptonote_basic.h +++ b/src/cryptonote_core/cryptonote_basic.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_core/cryptonote_basic_impl.cpp b/src/cryptonote_core/cryptonote_basic_impl.cpp index 4a2cb1d..d759ab3 100755 --- a/src/cryptonote_core/cryptonote_basic_impl.cpp +++ b/src/cryptonote_core/cryptonote_basic_impl.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_core/cryptonote_basic_impl.hpp b/src/cryptonote_core/cryptonote_basic_impl.hpp index f3bcc0c..33276f1 100755 --- a/src/cryptonote_core/cryptonote_basic_impl.hpp +++ b/src/cryptonote_core/cryptonote_basic_impl.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_core/cryptonote_boost_serialization.h b/src/cryptonote_core/cryptonote_boost_serialization.h index a2bee63..b225119 100755 --- a/src/cryptonote_core/cryptonote_boost_serialization.h +++ b/src/cryptonote_core/cryptonote_boost_serialization.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_core/cryptonote_core.cpp b/src/cryptonote_core/cryptonote_core.cpp index 5371f8a..fb2158f 100755 --- a/src/cryptonote_core/cryptonote_core.cpp +++ b/src/cryptonote_core/cryptonote_core.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_core/cryptonote_core.hpp b/src/cryptonote_core/cryptonote_core.hpp index a43210e..b0989ae 100755 --- a/src/cryptonote_core/cryptonote_core.hpp +++ b/src/cryptonote_core/cryptonote_core.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_core/cryptonote_format_utils.cpp b/src/cryptonote_core/cryptonote_format_utils.cpp index e805334..1918981 100755 --- a/src/cryptonote_core/cryptonote_format_utils.cpp +++ b/src/cryptonote_core/cryptonote_format_utils.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. @@ -704,9 +704,9 @@ namespace cryptonote //--------------------------------------------------------------- bool get_block_longhash(const block& b, crypto::hash& res, uint64_t height) { - block b_local = b; //workaround to avoid const errors with do_serialize + block b_local = b; // workaround to avoid const errors with do_serialize blobdata bd = get_block_hashing_blob(b); - crypto::cn_slow_hash(bd.data(), bd.size(), res, height >= CRYPTONOTE_HARDFORK_HEIGHT_1); + crypto::cn_slow_hash(bd.data(), bd.size(), res, height >= CRYPTONOTE_HARDFORK_HEIGHT_V1); return true; } //--------------------------------------------------------------- diff --git a/src/cryptonote_core/cryptonote_format_utils.hpp b/src/cryptonote_core/cryptonote_format_utils.hpp index d218093..8d29509 100755 --- a/src/cryptonote_core/cryptonote_format_utils.hpp +++ b/src/cryptonote_core/cryptonote_format_utils.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_core/cryptonote_stat_info.h b/src/cryptonote_core/cryptonote_stat_info.h index cc3d002..a7d6521 100755 --- a/src/cryptonote_core/cryptonote_stat_info.h +++ b/src/cryptonote_core/cryptonote_stat_info.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_core/difficulty.cpp b/src/cryptonote_core/difficulty.cpp index e8a74fb..0d222fc 100755 --- a/src/cryptonote_core/difficulty.cpp +++ b/src/cryptonote_core/difficulty.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. @@ -219,7 +219,7 @@ namespace cryptonote { difficulty_type next_difficulty(vector timestamps, vector cumulative_difficulties, uint64_t height/*=0*/, size_t target_seconds/*=CRYPTONOTE_DIFFICULTY_TARGET*/) { - if (height >= CRYPTONOTE_HARDFORK_HEIGHT_1) + if (height >= CRYPTONOTE_HARDFORK_HEIGHT_V1) { return next_difficulty_v2(std::move(timestamps), std::move(cumulative_difficulties), target_seconds); }else diff --git a/src/cryptonote_core/difficulty.hpp b/src/cryptonote_core/difficulty.hpp index 202e939..5480fbc 100755 --- a/src/cryptonote_core/difficulty.hpp +++ b/src/cryptonote_core/difficulty.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_core/miner.cpp b/src/cryptonote_core/miner.cpp index e48490f..48fcf2c 100755 --- a/src/cryptonote_core/miner.cpp +++ b/src/cryptonote_core/miner.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_core/miner.hpp b/src/cryptonote_core/miner.hpp index 972cd33..9d0137f 100755 --- a/src/cryptonote_core/miner.hpp +++ b/src/cryptonote_core/miner.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_core/tx_extra.h b/src/cryptonote_core/tx_extra.h index 03ac840..2c8d2d8 100755 --- a/src/cryptonote_core/tx_extra.h +++ b/src/cryptonote_core/tx_extra.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_core/tx_pool.cpp b/src/cryptonote_core/tx_pool.cpp index 16a943e..c3ef94b 100755 --- a/src/cryptonote_core/tx_pool.cpp +++ b/src/cryptonote_core/tx_pool.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_core/tx_pool.hpp b/src/cryptonote_core/tx_pool.hpp index ccda7a1..72cb00b 100755 --- a/src/cryptonote_core/tx_pool.hpp +++ b/src/cryptonote_core/tx_pool.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_core/verification_context.h b/src/cryptonote_core/verification_context.h index 1cb0308..38927a7 100755 --- a/src/cryptonote_core/verification_context.h +++ b/src/cryptonote_core/verification_context.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_protocol/blobdatatype.h b/src/cryptonote_protocol/blobdatatype.h index 30e8374..85cd626 100755 --- a/src/cryptonote_protocol/blobdatatype.h +++ b/src/cryptonote_protocol/blobdatatype.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_protocol/cryptonote_protocol_defs.h b/src/cryptonote_protocol/cryptonote_protocol_defs.h index 59a9e2e..3726334 100755 --- a/src/cryptonote_protocol/cryptonote_protocol_defs.h +++ b/src/cryptonote_protocol/cryptonote_protocol_defs.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_protocol/cryptonote_protocol_handler.h b/src/cryptonote_protocol/cryptonote_protocol_handler.h index f458dc7..e027b8e 100755 --- a/src/cryptonote_protocol/cryptonote_protocol_handler.h +++ b/src/cryptonote_protocol/cryptonote_protocol_handler.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_protocol/cryptonote_protocol_handler.inl b/src/cryptonote_protocol/cryptonote_protocol_handler.inl index 6127276..df99db4 100755 --- a/src/cryptonote_protocol/cryptonote_protocol_handler.inl +++ b/src/cryptonote_protocol/cryptonote_protocol_handler.inl @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/cryptonote_protocol/cryptonote_protocol_handler_common.h b/src/cryptonote_protocol/cryptonote_protocol_handler_common.h index 96c7d68..7dc5971 100755 --- a/src/cryptonote_protocol/cryptonote_protocol_handler_common.h +++ b/src/cryptonote_protocol/cryptonote_protocol_handler_common.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/daemon/daemon.cpp b/src/daemon/daemon.cpp index 40e2d5a..b1b47bb 100755 --- a/src/daemon/daemon.cpp +++ b/src/daemon/daemon.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/daemon/daemon_commands_handler.h b/src/daemon/daemon_commands_handler.h index eefe9ab..b98f460 100755 --- a/src/daemon/daemon_commands_handler.h +++ b/src/daemon/daemon_commands_handler.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/p2p/net_node.h b/src/p2p/net_node.h index 69687a6..0d94c4d 100755 --- a/src/p2p/net_node.h +++ b/src/p2p/net_node.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/p2p/net_node.inl b/src/p2p/net_node.inl index fe4c97c..04752b7 100755 --- a/src/p2p/net_node.inl +++ b/src/p2p/net_node.inl @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/p2p/net_node_common.h b/src/p2p/net_node_common.h index 72b12b2..a3a838e 100755 --- a/src/p2p/net_node_common.h +++ b/src/p2p/net_node_common.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/p2p/net_peerlist.h b/src/p2p/net_peerlist.h index 7f09ffc..f3301bf 100755 --- a/src/p2p/net_peerlist.h +++ b/src/p2p/net_peerlist.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/p2p/net_peerlist_boost_serialization.h b/src/p2p/net_peerlist_boost_serialization.h index 2f015f1..4e609a6 100755 --- a/src/p2p/net_peerlist_boost_serialization.h +++ b/src/p2p/net_peerlist_boost_serialization.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/p2p/p2p_networks.h b/src/p2p/p2p_networks.h index bbccbb3..b10b09a 100755 --- a/src/p2p/p2p_networks.h +++ b/src/p2p/p2p_networks.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/p2p/p2p_protocol_defs.h b/src/p2p/p2p_protocol_defs.h index 14c8e78..e33c231 100755 --- a/src/p2p/p2p_protocol_defs.h +++ b/src/p2p/p2p_protocol_defs.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/p2p/stdafx.h b/src/p2p/stdafx.h index 4fc31e1..222c799 100755 --- a/src/p2p/stdafx.h +++ b/src/p2p/stdafx.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/platform/mingw/alloca.h b/src/platform/mingw/alloca.h index 137eeec..448cd79 100755 --- a/src/platform/mingw/alloca.h +++ b/src/platform/mingw/alloca.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/platform/msc/alloca.h b/src/platform/msc/alloca.h index 4c91975..1839b53 100755 --- a/src/platform/msc/alloca.h +++ b/src/platform/msc/alloca.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/platform/msc/inline_c.h b/src/platform/msc/inline_c.h index bf4f74a..995d7c5 100755 --- a/src/platform/msc/inline_c.h +++ b/src/platform/msc/inline_c.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/platform/msc/stdbool.h b/src/platform/msc/stdbool.h index 22e66ec..5134f1e 100755 --- a/src/platform/msc/stdbool.h +++ b/src/platform/msc/stdbool.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/platform/msc/sys/param.h b/src/platform/msc/sys/param.h index 7d6d540..eddd5ac 100755 --- a/src/platform/msc/sys/param.h +++ b/src/platform/msc/sys/param.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/rpc/core_rpc_server.cpp b/src/rpc/core_rpc_server.cpp index f53f3ce..eee680f 100755 --- a/src/rpc/core_rpc_server.cpp +++ b/src/rpc/core_rpc_server.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/rpc/core_rpc_server.hpp b/src/rpc/core_rpc_server.hpp index 54a03a2..47cd694 100755 --- a/src/rpc/core_rpc_server.hpp +++ b/src/rpc/core_rpc_server.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/rpc/core_rpc_server_commands_defs.h b/src/rpc/core_rpc_server_commands_defs.h index 73d7562..7a1b59c 100755 --- a/src/rpc/core_rpc_server_commands_defs.h +++ b/src/rpc/core_rpc_server_commands_defs.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/rpc/core_rpc_server_error_codes.h b/src/rpc/core_rpc_server_error_codes.h index cf4fc28..f9cba8b 100755 --- a/src/rpc/core_rpc_server_error_codes.h +++ b/src/rpc/core_rpc_server_error_codes.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/serialization/binary_archive.h b/src/serialization/binary_archive.h index 5eb87eb..1df370c 100755 --- a/src/serialization/binary_archive.h +++ b/src/serialization/binary_archive.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/serialization/binary_utils.h b/src/serialization/binary_utils.h index 5e0f052..0c21a11 100755 --- a/src/serialization/binary_utils.h +++ b/src/serialization/binary_utils.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/serialization/crypto.h b/src/serialization/crypto.h index 41b5249..47b470f 100755 --- a/src/serialization/crypto.h +++ b/src/serialization/crypto.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/serialization/debug_archive.h b/src/serialization/debug_archive.h index 0a0e82d..fe1e241 100755 --- a/src/serialization/debug_archive.h +++ b/src/serialization/debug_archive.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/serialization/json_archive.h b/src/serialization/json_archive.h index d423f3d..18e9093 100755 --- a/src/serialization/json_archive.h +++ b/src/serialization/json_archive.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/serialization/json_utils.h b/src/serialization/json_utils.h index 4b7b20b..3172798 100755 --- a/src/serialization/json_utils.h +++ b/src/serialization/json_utils.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/serialization/serialization.h b/src/serialization/serialization.h index 988bbfb..e5942ea 100755 --- a/src/serialization/serialization.h +++ b/src/serialization/serialization.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/serialization/string.h b/src/serialization/string.h index 253b2cd..f270e21 100755 --- a/src/serialization/string.h +++ b/src/serialization/string.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/serialization/variant.h b/src/serialization/variant.h index c80a7f4..d01a61a 100755 --- a/src/serialization/variant.h +++ b/src/serialization/variant.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/serialization/vector.h b/src/serialization/vector.h index df005be..8d671d6 100755 --- a/src/serialization/vector.h +++ b/src/serialization/vector.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/simplewallet/password_container.cpp b/src/simplewallet/password_container.cpp index 27349ac..7914d42 100755 --- a/src/simplewallet/password_container.cpp +++ b/src/simplewallet/password_container.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/simplewallet/password_container.hpp b/src/simplewallet/password_container.hpp index 804de76..7f73b89 100755 --- a/src/simplewallet/password_container.hpp +++ b/src/simplewallet/password_container.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 403ce46..e9626b3 100755 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. @@ -988,7 +988,7 @@ int main(int argc, char* argv[]) if (command_line::get_arg(vm, command_line::arg_help)) { - success_msg_writer() << "bitnote wallet v" << PROJECT_VERSION_LONG; + success_msg_writer() << "cryonote wallet v" << PROJECT_VERSION_LONG; success_msg_writer() << "Usage: simplewallet [--wallet-file=|--generate-new-wallet=] [--daemon-address=:] []"; success_msg_writer() << desc_all << '\n' << w.get_commands_str(); return false; diff --git a/src/simplewallet/simplewallet.hpp b/src/simplewallet/simplewallet.hpp index 016e180..d488e18 100755 --- a/src/simplewallet/simplewallet.hpp +++ b/src/simplewallet/simplewallet.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/version.h.in b/src/version.h.in index 9db99b3..6b7b54f 100755 --- a/src/version.h.in +++ b/src/version.h.in @@ -1,4 +1,4 @@ #define BUILD_COMMIT_ID "@VERSION@" #define PROJECT_VERSION "1.2.0" -#define PROJECT_VERSION_BUILD_NO "12" +#define PROJECT_VERSION_BUILD_NO "13" #define PROJECT_VERSION_LONG PROJECT_VERSION "." PROJECT_VERSION_BUILD_NO "(" BUILD_COMMIT_ID ")" diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 0607276..498030f 100755 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/wallet/wallet.hpp b/src/wallet/wallet.hpp index ab01d86..65cf35e 100755 --- a/src/wallet/wallet.hpp +++ b/src/wallet/wallet.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/wallet/wallet_errors.h b/src/wallet/wallet_errors.h index 4538473..d00b8ff 100755 --- a/src/wallet/wallet_errors.h +++ b/src/wallet/wallet_errors.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/wallet/wallet_rpc_server.cpp b/src/wallet/wallet_rpc_server.cpp index 2aadce7..2039d18 100755 --- a/src/wallet/wallet_rpc_server.cpp +++ b/src/wallet/wallet_rpc_server.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/wallet/wallet_rpc_server.hpp b/src/wallet/wallet_rpc_server.hpp index e2b82bc..9147171 100755 --- a/src/wallet/wallet_rpc_server.hpp +++ b/src/wallet/wallet_rpc_server.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/wallet/wallet_rpc_server_commans_defs.h b/src/wallet/wallet_rpc_server_commans_defs.h index 8213e65..430f6cc 100755 --- a/src/wallet/wallet_rpc_server_commans_defs.h +++ b/src/wallet/wallet_rpc_server_commans_defs.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/src/wallet/wallet_rpc_server_error_codes.h b/src/wallet/wallet_rpc_server_error_codes.h index 6d88f1a..438fb43 100755 --- a/src/wallet/wallet_rpc_server_error_codes.h +++ b/src/wallet/wallet_rpc_server_error_codes.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/core_proxy/core_proxy.cpp b/tests/core_proxy/core_proxy.cpp index d725448..5e088de 100755 --- a/tests/core_proxy/core_proxy.cpp +++ b/tests/core_proxy/core_proxy.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/core_proxy/core_proxy.h b/tests/core_proxy/core_proxy.h index 57fe66e..34036b7 100755 --- a/tests/core_proxy/core_proxy.h +++ b/tests/core_proxy/core_proxy.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/core_tests/block_reward.cpp b/tests/core_tests/block_reward.cpp index b75a03b..db2f783 100755 --- a/tests/core_tests/block_reward.cpp +++ b/tests/core_tests/block_reward.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/core_tests/block_reward.h b/tests/core_tests/block_reward.h index 867018c..be70b2b 100755 --- a/tests/core_tests/block_reward.h +++ b/tests/core_tests/block_reward.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/core_tests/block_validation.cpp b/tests/core_tests/block_validation.cpp index 7a0f692..efaba21 100755 --- a/tests/core_tests/block_validation.cpp +++ b/tests/core_tests/block_validation.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/core_tests/block_validation.h b/tests/core_tests/block_validation.h index be22562..a1a1bc4 100755 --- a/tests/core_tests/block_validation.h +++ b/tests/core_tests/block_validation.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/core_tests/chain_split_1.cpp b/tests/core_tests/chain_split_1.cpp index ca2132d..660d22c 100755 --- a/tests/core_tests/chain_split_1.cpp +++ b/tests/core_tests/chain_split_1.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/core_tests/chain_split_1.h b/tests/core_tests/chain_split_1.h index b2628ac..c700d7f 100755 --- a/tests/core_tests/chain_split_1.h +++ b/tests/core_tests/chain_split_1.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/core_tests/chain_switch_1.cpp b/tests/core_tests/chain_switch_1.cpp index a9c951b..84e4720 100755 --- a/tests/core_tests/chain_switch_1.cpp +++ b/tests/core_tests/chain_switch_1.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/core_tests/chain_switch_1.h b/tests/core_tests/chain_switch_1.h index 88722df..c9a61a5 100755 --- a/tests/core_tests/chain_switch_1.h +++ b/tests/core_tests/chain_switch_1.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/core_tests/chaingen.cpp b/tests/core_tests/chaingen.cpp index ce0e6c5..872ed0e 100755 --- a/tests/core_tests/chaingen.cpp +++ b/tests/core_tests/chaingen.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/core_tests/chaingen.h b/tests/core_tests/chaingen.h index 6557bd1..34c12ee 100755 --- a/tests/core_tests/chaingen.h +++ b/tests/core_tests/chaingen.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/core_tests/chaingen001.cpp b/tests/core_tests/chaingen001.cpp index 6b109fb..4d6a659 100755 --- a/tests/core_tests/chaingen001.cpp +++ b/tests/core_tests/chaingen001.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/core_tests/chaingen_main.cpp b/tests/core_tests/chaingen_main.cpp index e201e0b..3b0c70f 100755 --- a/tests/core_tests/chaingen_main.cpp +++ b/tests/core_tests/chaingen_main.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/core_tests/chaingen_tests_list.h b/tests/core_tests/chaingen_tests_list.h index 25e40b5..987a4e5 100755 --- a/tests/core_tests/chaingen_tests_list.h +++ b/tests/core_tests/chaingen_tests_list.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/core_tests/double_spend.cpp b/tests/core_tests/double_spend.cpp index 6f46f1c..6da4d1c 100755 --- a/tests/core_tests/double_spend.cpp +++ b/tests/core_tests/double_spend.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/core_tests/double_spend.h b/tests/core_tests/double_spend.h index c7301c8..92a15d4 100755 --- a/tests/core_tests/double_spend.h +++ b/tests/core_tests/double_spend.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/core_tests/integer_overflow.cpp b/tests/core_tests/integer_overflow.cpp index 7a11bcc..2b5b829 100755 --- a/tests/core_tests/integer_overflow.cpp +++ b/tests/core_tests/integer_overflow.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/core_tests/integer_overflow.h b/tests/core_tests/integer_overflow.h index 75d5d0d..bc7c74b 100755 --- a/tests/core_tests/integer_overflow.h +++ b/tests/core_tests/integer_overflow.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/core_tests/ring_signature_1.cpp b/tests/core_tests/ring_signature_1.cpp index a15a4e5..5b707e4 100755 --- a/tests/core_tests/ring_signature_1.cpp +++ b/tests/core_tests/ring_signature_1.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/core_tests/ring_signature_1.h b/tests/core_tests/ring_signature_1.h index b4dc7d8..f9e23b0 100755 --- a/tests/core_tests/ring_signature_1.h +++ b/tests/core_tests/ring_signature_1.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/core_tests/transaction_tests.cpp b/tests/core_tests/transaction_tests.cpp index 63508f6..2090e6c 100755 --- a/tests/core_tests/transaction_tests.cpp +++ b/tests/core_tests/transaction_tests.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/core_tests/transaction_tests.h b/tests/core_tests/transaction_tests.h index 7fe9dfd..0ae03aa 100755 --- a/tests/core_tests/transaction_tests.h +++ b/tests/core_tests/transaction_tests.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/core_tests/tx_validation.cpp b/tests/core_tests/tx_validation.cpp index f5a2ccc..0ad6479 100755 --- a/tests/core_tests/tx_validation.cpp +++ b/tests/core_tests/tx_validation.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/core_tests/tx_validation.h b/tests/core_tests/tx_validation.h index 27c82d0..bde7766 100755 --- a/tests/core_tests/tx_validation.h +++ b/tests/core_tests/tx_validation.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/crypto/crypto-ops-data.c b/tests/crypto/crypto-ops-data.c index a6c05b6..f81404e 100755 --- a/tests/crypto/crypto-ops-data.c +++ b/tests/crypto/crypto-ops-data.c @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/crypto/crypto-ops.c b/tests/crypto/crypto-ops.c index 8c3bb75..c7a625a 100755 --- a/tests/crypto/crypto-ops.c +++ b/tests/crypto/crypto-ops.c @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/crypto/crypto-tests.h b/tests/crypto/crypto-tests.h index 9e984f9..9864948 100755 --- a/tests/crypto/crypto-tests.h +++ b/tests/crypto/crypto-tests.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/crypto/crypto.cpp b/tests/crypto/crypto.cpp index fd9c614..151e2bf 100755 --- a/tests/crypto/crypto.cpp +++ b/tests/crypto/crypto.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/crypto/hash.c b/tests/crypto/hash.c index b4c10ee..e85dbd7 100755 --- a/tests/crypto/hash.c +++ b/tests/crypto/hash.c @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/crypto/main.cpp b/tests/crypto/main.cpp index 756fee5..4cbb06b 100755 --- a/tests/crypto/main.cpp +++ b/tests/crypto/main.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/crypto/random.c b/tests/crypto/random.c index 32f7611..2994d5c 100755 --- a/tests/crypto/random.c +++ b/tests/crypto/random.c @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/daemon_tests/transfers.cpp b/tests/daemon_tests/transfers.cpp index 759f783..02304e2 100755 --- a/tests/daemon_tests/transfers.cpp +++ b/tests/daemon_tests/transfers.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/difficulty/difficulty.cpp b/tests/difficulty/difficulty.cpp index 7dff093..3924c28 100755 --- a/tests/difficulty/difficulty.cpp +++ b/tests/difficulty/difficulty.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/functional_tests/main.cpp b/tests/functional_tests/main.cpp index 0734f3d..3854f7f 100755 --- a/tests/functional_tests/main.cpp +++ b/tests/functional_tests/main.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/functional_tests/transactions_flow_test.cpp b/tests/functional_tests/transactions_flow_test.cpp index 26d5ad4..7d08486 100755 --- a/tests/functional_tests/transactions_flow_test.cpp +++ b/tests/functional_tests/transactions_flow_test.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/functional_tests/transactions_flow_test.h b/tests/functional_tests/transactions_flow_test.h index cb2a904..498d24d 100755 --- a/tests/functional_tests/transactions_flow_test.h +++ b/tests/functional_tests/transactions_flow_test.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/functional_tests/transactions_generation_from_blockchain.cpp b/tests/functional_tests/transactions_generation_from_blockchain.cpp index 1ff0af6..15338fa 100755 --- a/tests/functional_tests/transactions_generation_from_blockchain.cpp +++ b/tests/functional_tests/transactions_generation_from_blockchain.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/functional_tests/transactions_generation_from_blockchain.h b/tests/functional_tests/transactions_generation_from_blockchain.h index 2c1484a..769e7a3 100755 --- a/tests/functional_tests/transactions_generation_from_blockchain.h +++ b/tests/functional_tests/transactions_generation_from_blockchain.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/hash-target.cpp b/tests/hash-target.cpp index 255aa0e..daa810b 100755 --- a/tests/hash-target.cpp +++ b/tests/hash-target.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/hash/main.cpp b/tests/hash/main.cpp index 259d328..dc13da6 100755 --- a/tests/hash/main.cpp +++ b/tests/hash/main.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/io.h b/tests/io.h index de1cb99..7a4c7a5 100755 --- a/tests/io.h +++ b/tests/io.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/net_load_tests/clt.cpp b/tests/net_load_tests/clt.cpp index 147e277..cd85970 100755 --- a/tests/net_load_tests/clt.cpp +++ b/tests/net_load_tests/clt.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/net_load_tests/net_load_tests.h b/tests/net_load_tests/net_load_tests.h index b7b8212..cd00183 100755 --- a/tests/net_load_tests/net_load_tests.h +++ b/tests/net_load_tests/net_load_tests.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/net_load_tests/srv.cpp b/tests/net_load_tests/srv.cpp index a91a0dd..9617853 100755 --- a/tests/net_load_tests/srv.cpp +++ b/tests/net_load_tests/srv.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/performance_tests/check_ring_signature.h b/tests/performance_tests/check_ring_signature.h index 90f7283..031dc5c 100755 --- a/tests/performance_tests/check_ring_signature.h +++ b/tests/performance_tests/check_ring_signature.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/performance_tests/cn_slow_hash.h b/tests/performance_tests/cn_slow_hash.h index 4f299d5..58e6c87 100755 --- a/tests/performance_tests/cn_slow_hash.h +++ b/tests/performance_tests/cn_slow_hash.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/performance_tests/construct_tx.h b/tests/performance_tests/construct_tx.h index 2ff7a34..0ef5254 100755 --- a/tests/performance_tests/construct_tx.h +++ b/tests/performance_tests/construct_tx.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/performance_tests/derive_public_key.h b/tests/performance_tests/derive_public_key.h index 86050de..ea79a81 100755 --- a/tests/performance_tests/derive_public_key.h +++ b/tests/performance_tests/derive_public_key.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/performance_tests/derive_secret_key.h b/tests/performance_tests/derive_secret_key.h index fea8193..5303485 100755 --- a/tests/performance_tests/derive_secret_key.h +++ b/tests/performance_tests/derive_secret_key.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/performance_tests/generate_key_derivation.h b/tests/performance_tests/generate_key_derivation.h index 7093679..9e76868 100755 --- a/tests/performance_tests/generate_key_derivation.h +++ b/tests/performance_tests/generate_key_derivation.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/performance_tests/generate_key_image.h b/tests/performance_tests/generate_key_image.h index d30f4d2..008b593 100755 --- a/tests/performance_tests/generate_key_image.h +++ b/tests/performance_tests/generate_key_image.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/performance_tests/generate_key_image_helper.h b/tests/performance_tests/generate_key_image_helper.h index 0b6cf04..6233cb7 100755 --- a/tests/performance_tests/generate_key_image_helper.h +++ b/tests/performance_tests/generate_key_image_helper.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/performance_tests/is_out_to_acc.h b/tests/performance_tests/is_out_to_acc.h index 2425f10..bee4fd0 100755 --- a/tests/performance_tests/is_out_to_acc.h +++ b/tests/performance_tests/is_out_to_acc.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/performance_tests/main.cpp b/tests/performance_tests/main.cpp index 55e4eaa..2c8ad62 100755 --- a/tests/performance_tests/main.cpp +++ b/tests/performance_tests/main.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/performance_tests/multi_tx_test_base.h b/tests/performance_tests/multi_tx_test_base.h index 123e1fd..147694a 100755 --- a/tests/performance_tests/multi_tx_test_base.h +++ b/tests/performance_tests/multi_tx_test_base.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/performance_tests/performance_tests.h b/tests/performance_tests/performance_tests.h index fdc0f1e..e278201 100755 --- a/tests/performance_tests/performance_tests.h +++ b/tests/performance_tests/performance_tests.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/performance_tests/performance_utils.h b/tests/performance_tests/performance_utils.h index 5f4f818..3c2dcf6 100755 --- a/tests/performance_tests/performance_utils.h +++ b/tests/performance_tests/performance_utils.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/performance_tests/single_tx_test_base.h b/tests/performance_tests/single_tx_test_base.h index 8e3d6e9..4340f34 100755 --- a/tests/performance_tests/single_tx_test_base.h +++ b/tests/performance_tests/single_tx_test_base.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/unit_tests/base58.cpp b/tests/unit_tests/base58.cpp index 102c1a6..2d8d5d5 100755 --- a/tests/unit_tests/base58.cpp +++ b/tests/unit_tests/base58.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/unit_tests/block_reward.cpp b/tests/unit_tests/block_reward.cpp index f1aa75c..66c29df 100755 --- a/tests/unit_tests/block_reward.cpp +++ b/tests/unit_tests/block_reward.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/unit_tests/chacha8.cpp b/tests/unit_tests/chacha8.cpp index a659cd9..e4ecd71 100755 --- a/tests/unit_tests/chacha8.cpp +++ b/tests/unit_tests/chacha8.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/unit_tests/checkpoints.cpp b/tests/unit_tests/checkpoints.cpp index 987d070..48f425b 100755 --- a/tests/unit_tests/checkpoints.cpp +++ b/tests/unit_tests/checkpoints.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/unit_tests/decompose_amount_into_digits.cpp b/tests/unit_tests/decompose_amount_into_digits.cpp index 88fa353..2c5fe91 100755 --- a/tests/unit_tests/decompose_amount_into_digits.cpp +++ b/tests/unit_tests/decompose_amount_into_digits.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/unit_tests/epee_boosted_tcp_server.cpp b/tests/unit_tests/epee_boosted_tcp_server.cpp index b85766f..6d65158 100755 --- a/tests/unit_tests/epee_boosted_tcp_server.cpp +++ b/tests/unit_tests/epee_boosted_tcp_server.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/unit_tests/epee_levin_protocol_handler_async.cpp b/tests/unit_tests/epee_levin_protocol_handler_async.cpp index ebfd833..133aa5a 100755 --- a/tests/unit_tests/epee_levin_protocol_handler_async.cpp +++ b/tests/unit_tests/epee_levin_protocol_handler_async.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/unit_tests/get_xtype_from_string.cpp b/tests/unit_tests/get_xtype_from_string.cpp index e24021e..32a5dee 100755 --- a/tests/unit_tests/get_xtype_from_string.cpp +++ b/tests/unit_tests/get_xtype_from_string.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/unit_tests/main.cpp b/tests/unit_tests/main.cpp index f8a4cf4..1f0db41 100755 --- a/tests/unit_tests/main.cpp +++ b/tests/unit_tests/main.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/unit_tests/mul_div.cpp b/tests/unit_tests/mul_div.cpp index 77990f2..71f9940 100755 --- a/tests/unit_tests/mul_div.cpp +++ b/tests/unit_tests/mul_div.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/unit_tests/parse_amount.cpp b/tests/unit_tests/parse_amount.cpp index 26e51f7..8ef32f9 100755 --- a/tests/unit_tests/parse_amount.cpp +++ b/tests/unit_tests/parse_amount.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/unit_tests/serialization.cpp b/tests/unit_tests/serialization.cpp index fd5715f..f729d56 100755 --- a/tests/unit_tests/serialization.cpp +++ b/tests/unit_tests/serialization.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/unit_tests/test_format_utils.cpp b/tests/unit_tests/test_format_utils.cpp index b4e760a..aa0dfea 100755 --- a/tests/unit_tests/test_format_utils.cpp +++ b/tests/unit_tests/test_format_utils.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/unit_tests/test_peerlist.cpp b/tests/unit_tests/test_peerlist.cpp index 35eda06..622e5de 100755 --- a/tests/unit_tests/test_peerlist.cpp +++ b/tests/unit_tests/test_peerlist.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/unit_tests/test_protocol_pack.cpp b/tests/unit_tests/test_protocol_pack.cpp index 7ab7dba..a5f0ff6 100755 --- a/tests/unit_tests/test_protocol_pack.cpp +++ b/tests/unit_tests/test_protocol_pack.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved. diff --git a/tests/unit_tests/unit_tests_utils.h b/tests/unit_tests/unit_tests_utils.h index f13d1b9..4e9ece2 100755 --- a/tests/unit_tests/unit_tests_utils.h +++ b/tests/unit_tests/unit_tests_utils.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018, The Bitnote Developers. +// Copyright (c) 2018, The CryoNote Developers. // Portions Copyright (c) 2012-2013, The CryptoNote Developers. // // All rights reserved.