mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-16 17:27:38 +00:00
libwalletqt: cleanup unused code
This commit is contained in:
parent
efda517503
commit
3e2de76f7d
1 changed files with 0 additions and 15 deletions
|
@ -187,21 +187,6 @@ QString Wallet::keysPath() const
|
|||
return QDir::toNativeSeparators(QString::fromStdString(m_walletImpl->keysFilename()));;
|
||||
}
|
||||
|
||||
//void Wallet::storeAsync(const QJSValue &callback, const QString &path /* = "" */)
|
||||
//{
|
||||
// const auto future = m_scheduler.run(
|
||||
// [this, path] {
|
||||
// QMutexLocker locker(&m_asyncMutex);
|
||||
//
|
||||
// return QJSValueList({m_walletImpl->store(path.toStdString())});
|
||||
// },
|
||||
// callback);
|
||||
// if (!future.first)
|
||||
// {
|
||||
// QJSValue(callback).call(QJSValueList({false}));
|
||||
// }
|
||||
//}
|
||||
|
||||
void Wallet::store(const QString &path)
|
||||
{
|
||||
m_walletImpl->store(path.toStdString());
|
||||
|
|
Loading…
Reference in a new issue