Skip to content

Commit

Permalink
Merge pull request #546 from Peersyst/fix/create-account-duplicated
Browse files Browse the repository at this point in the history
Fix create account being duplicated
  • Loading branch information
AgustinMJ authored Oct 24, 2024
2 parents 0ec0304 + 57acbb7 commit b72a4a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ This document logs notable, developer-facing updates to the NEAR Mobile Wallet.

### 🐛 Bug Fixes

- Fix account being duplicated when creating new account [fix/create-account-duplicated](https://github.com/Peersyst/near-mobile-wallet/pull/546)
- Fix withdraw showing success when failing [fix/android-opening-default-browser](https://github.com/Peersyst/near-mobile-wallet/pull/545)
- Fix Android opening default browser [fix/android-opening-default-browser](https://github.com/Peersyst/near-mobile-wallet/pull/544)
- Improve UI of the explore section [fix/explore-ui-fixes](https://github.com/Peersyst/near-mobile-wallet/pull/543)
Expand Down
2 changes: 1 addition & 1 deletion src/module/sdk/NearSdkService/NearSdkService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ export class NearSDKService {
}

getSecretKey(): string {
return this.keyPair.secretKey;
return this.keyPair.extendedSecretKey;
}

static isSameSecretKey(secretKey1: string, secretKey2: string): boolean {
Expand Down

0 comments on commit b72a4a5

Please sign in to comment.