This commit is contained in:
stoffu
2018-03-06 01:19:45 +09:00
parent c5363da1e8
commit c8f0cf3543
22 changed files with 161 additions and 112 deletions

View File

@@ -102,9 +102,9 @@ Wallet::Status Wallet::status() const
return static_cast<Status>(m_walletImpl->status());
}
bool Wallet::testnet() const
NetworkType::Type Wallet::nettype() const
{
return m_walletImpl->testnet();
return static_cast<NetworkType::Type>(m_walletImpl->nettype());
}