wallet2: remove {set|get}_default_decimal_point and use the same funcs under cryptonote:: instead

This commit is contained in:
stoffu
2018-01-17 10:25:24 +09:00
parent 7d1088d337
commit 3160a93027
3 changed files with 2 additions and 14 deletions
-10
View File
@@ -3410,16 +3410,6 @@ bool wallet2::parse_payment_id(const std::string& payment_id_str, crypto::hash&
return false;
}
//----------------------------------------------------------------------------------------------------
void wallet2::set_default_decimal_point(unsigned int decimal_point)
{
cryptonote::set_default_decimal_point(decimal_point);
}
//----------------------------------------------------------------------------------------------------
unsigned int wallet2::get_default_decimal_point() const
{
return cryptonote::get_default_decimal_point();
}
//----------------------------------------------------------------------------------------------------
bool wallet2::prepare_file_names(const std::string& file_path)
{
do_prepare_file_names(file_path, m_keys_file, m_wallet_file);