Skip to content

Commit c2ed3b3

Browse files
authored
Fix isOwnAddress method in wallet composable (#610)
1 parent a7b4733 commit c2ed3b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/composables/use_wallet.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ function addWallet(wallet) {
212212
isViewOnly.value = wallet.isViewOnly();
213213
},
214214
save: (encWif) => wallet.save(encWif),
215-
isOwnAddress: () => wallet.isOwnAddress(),
215+
isOwnAddress: (addr) => wallet.isOwnAddress(addr),
216216
isCreatingTransaction,
217217
isHD,
218218
balance,

0 commit comments

Comments
 (0)