Skip to content

Commit

Permalink
fix snifHw registration ref #255
Browse files Browse the repository at this point in the history
  • Loading branch information
stdevAlDen committed Mar 6, 2020
1 parent eb0eb30 commit d53df3f
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/models/walletsModel.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,8 @@ import (
fce "github.com/fibercrypto/fibercryptowallet/src/errors"
fccore "github.com/fibercrypto/fibercryptowallet/src/core"
wlcore "github.com/fibercrypto/fibercryptowallet/src/main"
fccore "github.com/fibercrypto/fibercryptowallet/src/core"
wlcore "github.com/fibercrypto/fibercryptowallet/src/main"
"github.com/fibercrypto/fibercryptowallet/src/util/logging"
skyWallet "github.com/fibercrypto/skywallet-go/src/skywallet"
skyWallet "github.com/fibercrypto/skywallet-go/src/skywallet"
"github.com/therecipe/qt/core"
"github.com/therecipe/qt/qml"
"time"
Expand Down Expand Up @@ -131,7 +128,7 @@ func (walletModel *WalletModel) init() {
walletModel.ConnectRowCount(walletModel.rowCount)
walletModel.ConnectColumnCount(walletModel.columnCount)
walletModel.ConnectRoleNames(walletModel.roleNames)

walletModel.ConnectSniffHw(walletModel.sniffHw)
walletModel.ConnectAddWallet(walletModel.addWallet)
walletModel.ConnectEditWallet(walletModel.editWallet)
walletModel.ConnectRemoveWallet(walletModel.removeWallet)
Expand All @@ -151,7 +148,6 @@ func (walletModel *WalletModel) init() {
encrypted = true
}
walletModel.editWallet(wi.row, wi.wallet.Name(), encrypted, wi.wallet.Sky(), wi.wallet.CoinHours())
walletModel.ConnectSniffHw(walletModel.sniffHw)
}
}
}()
Expand Down

0 comments on commit d53df3f

Please sign in to comment.