Skip to content

Commit

Permalink
[models]Remove duplicated methods in walletManager
Browse files Browse the repository at this point in the history
  • Loading branch information
mauricio1802 committed Dec 9, 2019
1 parent 48b3a48 commit 4478b3d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 0 additions & 2 deletions src/models/walletsManager.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ type WalletManager struct {
_ func() `constructor:"init"`
_ func(seed string, label string, walletType string, password string, scanN int) *QWallet `slot:"createEncryptedWallet"`
_ func(seed string, label string, walletType string, scanN int) *QWallet `slot:"createUnencryptedWallet"`
_ func(seed string, label string, password string, scanN int) *QWallet `slot:"createEncryptedWallet"`
_ func(seed string, label string, scanN int) *QWallet `slot:"createUnencryptedWallet"`
_ func(entropy int) string `slot:"getNewSeed"`
_ func(seed string) int `slot:"verifySeed"`
_ func(id string, n int, password string) `slot:"newWalletAddress"`
Expand Down
5 changes: 1 addition & 4 deletions src/ui/SubPageSendAdvanced.qml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,7 @@ Page {
upperAltCointBound = valCH*9/10
minFeeAmount = valCH/10
}
<<<<<<< HEAD
=======

>>>>>>> 361d7f76c5f2348ed6ab09bde7934bc05aade9e4
function getSelectedAddressesWithWallets(){
var indexs = comboBoxWalletsAddressesSendFrom.getCheckedDelegates()
var addresses = []
Expand Down Expand Up @@ -94,7 +91,7 @@ Page {
var indexs = comboBoxWalletsSendFrom.getCheckedDelegates()
var enc = []
for (var i = 0; i < indexs.length; i++){
walletEncrypted = []
var walletEncrypted = []
walletEncrypted.push(comboBoxWalletsSendFrom.model.wallets[indexs[i]].fileName)
walletEncrypted.push(comboBoxWalletsSendFrom.model.wallets[indexs[i]].name)
walletEncrypted.push(comboBoxWalletsSendFrom.model.wallets[indexs[i]].encryptionEnabled)
Expand Down

0 comments on commit 4478b3d

Please sign in to comment.