Skip to content

Commit

Permalink
Release 3.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
cutcoin committed Feb 18, 2021
1 parent 1f7dbc7 commit 4810acf
Show file tree
Hide file tree
Showing 575 changed files with 3,357 additions and 2,099 deletions.
39 changes: 29 additions & 10 deletions CMakeLists.txt
@@ -1,4 +1,4 @@
# Copyright (c) 2018-2020, CUT coin
# Copyright (c) 2018-2021, CUT coin
# Copyright (c) 2014-2018, The Monero Project
#
# All rights reserved.
Expand Down Expand Up @@ -28,6 +28,8 @@
# THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)

list(INSERT CMAKE_MODULE_PATH 0
"${CMAKE_SOURCE_DIR}/cmake")
include(CheckCCompilerFlag)
Expand Down Expand Up @@ -219,6 +221,7 @@ endif()
message(STATUS "BOOST_IGNORE_SYSTEM_PATHS defaults to ${BOOST_IGNORE_SYSTEM_PATHS_DEFAULT}")
option(BOOST_IGNORE_SYSTEM_PATHS "Ignore boost system paths for local boost installation" ${BOOST_IGNORE_SYSTEM_PATHS_DEFAULT})

option(BUILD_MOBILE "Build with native libs for mobile platform" OFF)

if (NOT DEFINED ENV{DEVELOPER_LIBUNBOUND_OLD})
message(STATUS "Could not find DEVELOPER_LIBUNBOUND_OLD in env (not required)")
Expand Down Expand Up @@ -867,7 +870,13 @@ if(STATIC)
set(Boost_USE_STATIC_RUNTIME ON)
set(Boost_NO_BOOST_CMAKE ON)
endif()
find_package(Boost 1.58 QUIET REQUIRED COMPONENTS system filesystem thread date_time chrono regex serialization program_options locale)

if (BUILD_MOBILE)
list(APPEND BOOST_MODULES system filesystem thread date_time chrono regex serialization program_options)
else()
list(APPEND BOOST_MODULES system filesystem thread date_time chrono regex serialization program_options locale)
endif()
find_package(Boost 1.58 QUIET REQUIRED COMPONENTS ${BOOST_MODULES})

set(CMAKE_FIND_LIBRARY_SUFFIXES ${OLD_LIB_SUFFIXES})
if(NOT Boost_FOUND)
Expand Down Expand Up @@ -950,21 +959,31 @@ if(ANDROID)
endif()
if(CMAKE_C_COMPILER_ID STREQUAL "Clang" AND ARCH_WIDTH EQUAL "32" AND NOT IOS AND NOT FREEBSD)
find_library(ATOMIC atomic)
list(APPEND EXTRA_LIBRARIES ${ATOMIC})
if (ATOMIC_FOUND)
list(APPEND EXTRA_LIBRARIES ${ATOMIC})
endif()
endif()

if (NOT BUILD_MOBILE)
find_path(ZMQ_INCLUDE_PATH zmq.hpp)
find_library(ZMQ_LIB zmq)

if(NOT ZMQ_INCLUDE_PATH)
message(FATAL_ERROR "Could not find required header zmq.hpp")
endif()
if(NOT ZMQ_LIB)
message(FATAL_ERROR "Could not find required libzmq")
endif()
endif()

find_path(ZMQ_INCLUDE_PATH zmq.hpp)
find_library(ZMQ_LIB zmq)
find_library(PGM_LIBRARY pgm)
find_library(NORM_LIBRARY norm)
find_library(SODIUM_LIBRARY sodium)

if(NOT ZMQ_INCLUDE_PATH)
message(FATAL_ERROR "Could not find required header zmq.hpp")
endif()
if(NOT ZMQ_LIB)
message(FATAL_ERROR "Could not find required libzmq")
if (BUILD_MOBILE)
include_directories(${LIBSODIUM_INCLUDE_DIR})
endif()

if(PGM_LIBRARY)
set(ZMQ_LIB "${ZMQ_LIB};${PGM_LIBRARY}")
endif()
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Expand Up @@ -4,4 +4,4 @@ We appreciate any help that supports the project. Please contact

- Forum: [https://bitcointalk.org/index.php?topic=5087550.msg48784779#msg48784779](https://bitcointalk.org/index.php?topic=5087550.msg48784779#msg48784779)
- Mail: [info@cutcoin.org](mailto:info@cutcoin.org)
- GitHub: [https://github.com/cutcoin](https://github.com/cutcoin)
- GitHub: [https://github.com/cutcoin](https://github.com/cutcoin)
2 changes: 1 addition & 1 deletion Makefile
@@ -1,4 +1,4 @@
# Copyright (c) 2018-2020, CUT coin
# Copyright (c) 2018-2021, CUT coin
# Copyright (c) 2014-2018, The Monero Project
#
# All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -10,7 +10,7 @@ privacy, PoS consensus and tokens support.

Cutcoin is an open source software, see the full license text [here](LICENSE).

Copyright (c) 2018-2020 CUT coin.
Copyright (c) 2018-2021 CUT coin.

Copyright (c) 2014-2017 The Monero Project.

Expand Down
3 changes: 3 additions & 0 deletions ReleaseNotes.md
@@ -1,4 +1,7 @@

###Release v 3.0.5
* Fix issue in 'sweep_all'
* Implemented tokens with hidden supply. When create a new token it has public supply by default, but now you can add modifier 'hidden' to make it visible only for the owner.
###Release v 3.0.4
* Add mainnet release name

Expand Down
2 changes: 1 addition & 1 deletion cmake/32-bit-toolchain.cmake
@@ -1,4 +1,4 @@
# Copyright (c) 2018-2020, CUT coin
# Copyright (c) 2018-2021, CUT coin
# Copyright (c) 2014-2018, The Monero Project
#
# All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion cmake/64-bit-toolchain.cmake
@@ -1,4 +1,4 @@
# Copyright (c) 2018-2020, CUT coin
# Copyright (c) 2018-2021, CUT coin
# Copyright (c) 2014-2018, The Monero Project
#
# All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion cmake/FindUnbound.cmake
@@ -1,4 +1,4 @@
# Copyright (c) 2018-2020, CUT coin
# Copyright (c) 2018-2021, CUT coin
# Copyright (c) 2014-2018, The Monero Project
# All rights reserved.
#
Expand Down
2 changes: 1 addition & 1 deletion cmake/GenVersion.cmake
@@ -1,4 +1,4 @@
# Copyright (c) 2018-2020, CUT coin
# Copyright (c) 2018-2021, CUT coin
# Copyright (c) 2014-2018, The Monero Project
#
# All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion cmake/Version.cmake
@@ -1,4 +1,4 @@
# Copyright (c) 2018-2020, CUT coin
# Copyright (c) 2018-2021, CUT coin
# Copyright (c) 2014-2018, The Monero Project
#
# All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion cmake/test-static-assert.c
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
//
// All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion cmake/test-static-assert.cpp
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
//
// All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion contrib/CMakeLists.txt
@@ -1,4 +1,4 @@
# Copyright (c) 2018-2020, CUT coin
# Copyright (c) 2018-2021, CUT coin
# Copyright (c) 2014-2018, The Monero Project
#
# All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion contrib/epee/CMakeLists.txt
@@ -1,4 +1,4 @@
# Copyright (c) 2018-2020, CUT coin
# Copyright (c) 2018-2021, CUT coin
# Copyright (c) 2014-2018, The Monero Project
#
# All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion contrib/epee/include/net/connection_basic.hpp
Expand Up @@ -8,7 +8,7 @@
// ! (how ever if in some wonderful juristdictions that is not the case, then why not make another sub-class withat that members and licence it as epee part)
// ! Working on above premise, IF this is valid in your juristdictions, then consider this code as released as:

// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
//
// All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion contrib/epee/include/net/http_auth.h
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
//
// Copyright (c) 2014-2018, The Monero Project
// All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion contrib/epee/include/net/network_throttle-detail.hpp
Expand Up @@ -2,7 +2,7 @@
/// @author rfree (current maintainer in monero.cc project)
/// @brief implementaion for throttling of connection (count and rate-limit speed etc)

// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
//
// All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion contrib/epee/include/net/network_throttle.hpp
Expand Up @@ -2,7 +2,7 @@
/// @author rfree (current maintainer in monero.cc project)
/// @brief interface for throttling of connection (count and rate-limit speed etc)

// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
//
// All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion contrib/epee/src/CMakeLists.txt
@@ -1,4 +1,4 @@
# Copyright (c) 2018-2020, CUT coin
# Copyright (c) 2018-2021, CUT coin
# Copyright (c) 2014-2018, The Monero Project
#
# All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion contrib/epee/src/connection_basic.cpp
Expand Up @@ -2,7 +2,7 @@
/// @author rfree (current maintainer in monero.cc project)
/// @brief base for connection, contains e.g. the ratelimit hooks

// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
//
// All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion contrib/epee/src/http_auth.cpp
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
//
// All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion contrib/epee/src/network_throttle-detail.cpp
Expand Up @@ -2,7 +2,7 @@
/// @author rfree (current maintainer in monero.cc project)
/// @brief implementaion for throttling of connection (count and rate-limit speed etc)

// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
//
// All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion contrib/epee/src/network_throttle.cpp
Expand Up @@ -26,7 +26,7 @@ Throttling work by:
*/

// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
//
// All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion external/CMakeLists.txt
@@ -1,4 +1,4 @@
# Copyright (c) 2018-2020, CUT coin
# Copyright (c) 2018-2021, CUT coin
# Copyright (c) 2014-2018, The Monero Project
#
# All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion external/db_drivers/CMakeLists.txt
@@ -1,4 +1,4 @@
# Copyright (c) 2018-2020, CUT coin
# Copyright (c) 2018-2021, CUT coin
# Copyright (c) 2014-2018, The Monero Project
#
# All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion external/db_drivers/liblmdb/CMakeLists.txt
@@ -1,4 +1,4 @@
# Copyright (c) 2018-2020, CUT coin
# Copyright (c) 2018-2021, CUT coin
# Copyright (c) 2014-2018, The Monero Project
#
# All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion external/easylogging++/CMakeLists.txt
@@ -1,4 +1,4 @@
# Copyright (c) 2018-2020, CUT coin
# Copyright (c) 2018-2021, CUT coin
# Copyright (c) 2014-2018, The Monero Project
#
# All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion include/INode.h
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
//
// All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion include/IWallet.h
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
//
// All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
@@ -1,4 +1,4 @@
# Copyright (c) 2018-2020, CUT coin
# Copyright (c) 2018-2021, CUT coin
# Copyright (c) 2014-2018, The Monero Project
#
# All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion src/blockchain_db/CMakeLists.txt
@@ -1,4 +1,4 @@
# Copyright (c) 2018-2020, CUT coin
# Copyright (c) 2018-2021, CUT coin
# Copyright (c) 2014-2018, The Monero Project
#
# All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion src/blockchain_db/berkeleydb/db_bdb.cpp
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
// All rights reserved.
//
Expand Down
2 changes: 1 addition & 1 deletion src/blockchain_db/berkeleydb/db_bdb.h
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
// All rights reserved.
//
Expand Down
2 changes: 1 addition & 1 deletion src/blockchain_db/blockchain_db.cpp
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
//
// All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion src/blockchain_db/blockchain_db.h
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
//
// All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion src/blockchain_db/db_types.h
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
//
// All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion src/blockchain_db/lmdb/db_lmdb.cpp
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
// All rights reserved.
//
Expand Down
2 changes: 1 addition & 1 deletion src/blockchain_db/lmdb/db_lmdb.h
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
// All rights reserved.
//
Expand Down
2 changes: 1 addition & 1 deletion src/blockchain_utilities/CMakeLists.txt
@@ -1,4 +1,4 @@
# Copyright (c) 2018-2020, CUT coin
# Copyright (c) 2018-2021, CUT coin
# Copyright (c) 2014-2018, The Monero Project
#
# All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion src/blockchain_utilities/README.md
@@ -1,6 +1,6 @@
# CUT Coin Blockchain Utilities

Copyright (c) 2018-2019, CUT coin
Copyright (c) 2018-2021, CUT coin
Copyright (c) 2014-2018, The Monero Project

## Introduction
Expand Down
2 changes: 1 addition & 1 deletion src/blockchain_utilities/blockchain_ancestry.cpp
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
//
// All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion src/blockchain_utilities/blockchain_blackball.cpp
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
//
// All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion src/blockchain_utilities/blockchain_depth.cpp
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
//
// All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion src/blockchain_utilities/blockchain_export.cpp
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
//
// All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion src/blockchain_utilities/blockchain_import.cpp
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
//
// All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion src/blockchain_utilities/blockchain_usage.cpp
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
//
// All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion src/blockchain_utilities/blockchain_utilities.h
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
//
// All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion src/blockchain_utilities/blocksdat_file.cpp
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
//
// All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion src/blockchain_utilities/blocksdat_file.h
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
//
// All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion src/blockchain_utilities/bootstrap_file.cpp
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020, CUT coin
// Copyright (c) 2018-2021, CUT coin
// Copyright (c) 2014-2018, The Monero Project
//
// All rights reserved.
Expand Down

0 comments on commit 4810acf

Please sign in to comment.