forked from lthn/blockchain
13 lines
352 B
C++
13 lines
352 B
C++
|
|
// Copyright (c) 2014-2018 Zano Project
|
||
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
||
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||
|
|
|
||
|
|
#include "plain_wallet_api_impl.h"
|
||
|
|
|
||
|
|
namespace wallet
|
||
|
|
{
|
||
|
|
bool plain_wallet_api_impl::init(const std::string ip, const std::string port)
|
||
|
|
{
|
||
|
|
return true;//TODO
|
||
|
|
}
|
||
|
|
}
|