Skip to content

Commit

Permalink
fix signmsg
Browse files Browse the repository at this point in the history
  • Loading branch information
BitHighlander committed Sep 22, 2023
1 parent a8fcbcb commit e54abe6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export const EIP155SignMessageConfirmation = () => {
for(let i=0; i< accountsOptions.length; i++){
const accountPath = wallet.ethGetAccountPaths({ coin: 'Ethereum', accountIdx: i })
let address = await wallet.ethGetAddress({addressNList: accountPath[0].addressNList, showDisplay: false})
if(address.toLowerCase() === params.request.params[0].toLowerCase()){
if(address.toLowerCase() === params.request.params[1].toLowerCase()){
setAddress(address)
setAccountPath(accountPath[0].addressNList)
return
Expand Down

0 comments on commit e54abe6

Please sign in to comment.