Sale Djenic b3f8af8e06 refactor(@desktop/general): qml code referring to the old code base commented out
Qml code referring to the old code base commented out, but not deleted,
due to easier refactoring the rest of the app.
2022-02-01 11:42:42 +01:00

26 lines
645 B
QML

pragma Singleton
import QtQuick 2.13
QtObject {
id: root
property var dappBrowserAccount: walletSectionCurrent
property var accounts: walletSectionAccounts.model
property string defaultCurrency: walletSection.currentCurrency
property string signingPhrase: walletSection.signingPhrase
// Not Refactored Yet
property string etherscanString: ""// walletModel.utilsView.etherscanLink
function setDappBrowserAddress() {
// Not Refactored Yet
// walletModel.setDappBrowserAddress()
}
function getGasPrice(){
// Not Refactored Yet
// walletModel.gasView.getGasPrice()
}
}