Skip to content

Commit

Permalink
Update Karbo core to v. 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aivve committed Dec 16, 2019
1 parent 212183f commit 67acd05
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CryptoNoteWallet.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
set(CN_PROJECT_NAME "KarbowanecWallet")
set(CN_CURRENCY_DISPLAY_NAME "Karbo")
set(CN_CURRENCY_TICKER "KRB")
set(CN_VERSION 1.3.6)
set(CN_VERSION 1.3.7)
2 changes: 1 addition & 1 deletion cryptonote
Submodule cryptonote updated 57 files
+19 −19 src/BlockchainExplorer/BlockchainExplorerDataBuilder.cpp
+1 −1 src/BlockchainExplorer/BlockchainExplorerDataBuilder.h
+2 −1 src/CheckpointsData.h
+0 −0 src/Common/ColouredMsg.h
+1 −1 src/Common/PasswordContainer.cpp
+2 −2 src/ConnectivityTool/ConnectivityTool.cpp
+46 −50 src/CryptoNoteCore/Blockchain.cpp
+6 −6 src/CryptoNoteCore/Blockchain.h
+124 −132 src/CryptoNoteCore/Core.cpp
+6 −5 src/CryptoNoteCore/Core.h
+1 −1 src/CryptoNoteCore/ICore.h
+1 −1 src/CryptoNoteCore/TransactionPool.h
+18 −8 src/CryptoNoteProtocol/CryptoNoteProtocolHandler.cpp
+78 −78 src/Daemon/Daemon.cpp
+28 −15 src/Daemon/DaemonCommandsHandler.cpp
+4 −3 src/Daemon/DaemonCommandsHandler.h
+1 −1 src/GreenWallet/AddressBook.cpp
+1 −1 src/GreenWallet/CommandDispatcher.cpp
+1 −1 src/GreenWallet/CommandImplementations.cpp
+1 −1 src/GreenWallet/Fusion.cpp
+1 −1 src/GreenWallet/Menu.cpp
+1 −1 src/GreenWallet/Open.cpp
+1 −1 src/GreenWallet/Sync.cpp
+1 −1 src/GreenWallet/Tools.cpp
+1 −1 src/GreenWallet/Transfer.cpp
+1 −1 src/GreenWallet/ZedWallet.cpp
+1 −2 src/InProcessNode/InProcessNode.h
+3 −3 src/NodeRpcProxy/NodeRpcProxy.cpp
+0 −18 src/P2p/IP2pNodeInternal.cpp
+0 −39 src/P2p/IP2pNodeInternal.h
+5 −7 src/P2p/NetNode.h
+0 −168 src/P2p/P2pConnectionProxy.cpp
+0 −59 src/P2p/P2pConnectionProxy.h
+0 −193 src/P2p/P2pContext.cpp
+0 −104 src/P2p/P2pContext.h
+0 −47 src/P2p/P2pContextOwner.cpp
+0 −46 src/P2p/P2pContextOwner.h
+0 −25 src/P2p/P2pInterfaces.cpp
+0 −47 src/P2p/P2pInterfaces.h
+0 −553 src/P2p/P2pNode.cpp
+0 −122 src/P2p/P2pNode.h
+0 −130 src/P2p/P2pNodeConfig.cpp
+0 −63 src/P2p/P2pNodeConfig.h
+8 −0 src/PaymentGate/PaymentServiceJsonRpcMessages.cpp
+13 −0 src/PaymentGate/PaymentServiceJsonRpcMessages.h
+7 −0 src/PaymentGate/PaymentServiceJsonRpcServer.cpp
+2 −0 src/PaymentGate/PaymentServiceJsonRpcServer.h
+15 −0 src/PaymentGate/WalletService.cpp
+4 −1 src/PaymentGate/WalletService.h
+1 −1 src/PaymentGateService/PaymentGateService.cpp
+48 −237 src/Rpc/CoreRpcServerCommandsDefinitions.h
+126 −441 src/Rpc/RpcServer.cpp
+24 −31 src/Rpc/RpcServer.h
+2 −2 src/Wallet/WalletGreen.cpp
+2 −2 src/WalletLegacy/WalletLegacy.cpp
+35 −9 src/version.cmake
+4 −4 src/version.h.in
10 changes: 5 additions & 5 deletions src/CryptoNoteWrapper.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright (c) 2011-2015 The Cryptonote developers
// Copyright (c) 2016-2017 The Karbowanec developers
// Copyright (c) 2016-2019 The Karbowanec developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down Expand Up @@ -235,7 +235,7 @@ class RpcNode : CryptoNote::INodeObserver, public Node {
CryptoNote::invokeJsonCommand(httpClient, "/getinfo", req, res);
std::string err = interpret_rpc_response(true, res.status);
if (err.empty())
return res.tx_count;
return res.transactions_count;
else {
qDebug() << "Failed to invoke request: " << QString::fromStdString(err);
return 0;
Expand All @@ -257,7 +257,7 @@ class RpcNode : CryptoNote::INodeObserver, public Node {
CryptoNote::invokeJsonCommand(httpClient, "/getinfo", req, res);
std::string err = interpret_rpc_response(true, res.status);
if (err.empty())
return res.tx_pool_size;
return res.transactions_pool_size;
else {
qDebug() << "Failed to invoke request: " << QString::fromStdString(err);
return 0;
Expand Down Expand Up @@ -445,7 +445,7 @@ class InprocessNode : CryptoNote::INodeObserver, public Node {
m_coreConfig(coreConfig),
m_netNodeConfig(netNodeConfig),
m_protocolHandler(currency, m_dispatcher, m_core, nullptr, logManager),
m_core(currency, &m_protocolHandler, logManager, true),
m_core(currency, &m_protocolHandler, logManager, m_dispatcher, true),
m_nodeServer(m_dispatcher, m_protocolHandler, logManager),
m_node(m_core, m_protocolHandler) {

Expand Down Expand Up @@ -596,7 +596,7 @@ class InprocessNode : CryptoNote::INodeObserver, public Node {
System::Dispatcher m_dispatcher;
CryptoNote::CoreConfig m_coreConfig;
CryptoNote::NetNodeConfig m_netNodeConfig;
CryptoNote::core m_core;
CryptoNote::Core m_core;
CryptoNote::CryptoNoteProtocolHandler m_protocolHandler;
CryptoNote::NodeServer m_nodeServer;
CryptoNote::InProcessNode m_node;
Expand Down
2 changes: 1 addition & 1 deletion src/CryptoNoteWrapper.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright (c) 2011-2015 The Cryptonote developers
// Copyright (c) 2016-2017 The Karbowanec developers
// Copyright (c) 2016-2019 The Karbowanec developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

Expand Down
6 changes: 3 additions & 3 deletions src/cryptonotewallet.rc
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ IDI_ICON1 ICON "images\karbowanez.ico"

#define VER_FILEVERSION 1,0,0,0
#define VER_FILEVERSION_STR "1.0.0.0\0"
#define VER_PRODUCTVERSION 1,3,6
#define VER_PRODUCTVERSION_STR "1.3.6\0"
#define VER_PRODUCTVERSION 1,3,7
#define VER_PRODUCTVERSION_STR "1.3.7\0"
#define VER_FILEDESCRIPTION_STR "Karbo"
#define VER_INTERNALNAME_STR "Karbowanec"
#define VER_LEGALCOPYRIGHT_STR "Copyright (C) 2016-2018, Karbowanec Developers"
#define VER_LEGALCOPYRIGHT_STR "Copyright (C) 2016-2019, Karbowanec Developers"
#define VER_ORIGINALFILENAME_STR "Karbowanec.exe"
#define VER_PRODUCTNAME_STR "Karbowanec"

Expand Down

0 comments on commit 67acd05

Please sign in to comment.