1
0
Fork 0
forked from lthn/blockchain

Merge from master

This commit is contained in:
cryptozoidberg 2020-09-07 21:03:47 +02:00
commit af308765d9
No known key found for this signature in database
GPG key ID: 22DEB97A54C6FDEC
3 changed files with 4 additions and 3 deletions

View file

@ -133,7 +133,7 @@ extern int cacheflush(char *addr, int nbytes, int cache);
#ifdef _WIN32
typedef int64_t off64_t;
#else
typedef off_t off64_t;
//typedef off_t off64_t;
#endif

View file

@ -7,8 +7,8 @@ description: |
The technology behind our blockchain provides reliability, security,
and flexibility a perfect option for P2P transactions.
More info: http://zano.org
grade: devel
confinement: devmode
grade: stable
confinement: strict
architectures:
- build-on: amd64

View file

@ -158,6 +158,7 @@ void wallet2::init(const std::string& daemon_address)
{
m_miner_text_info = PROJECT_VERSION_LONG;
m_core_proxy->set_connection_addr(daemon_address);
m_core_proxy->check_connection();
}
//----------------------------------------------------------------------------------------------------
bool wallet2::set_core_proxy(const std::shared_ptr<i_core_proxy>& proxy)