Skip to content

Commit

Permalink
fix: repository urls
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanml committed Aug 1, 2024
1 parent cbc9c3c commit e10e7af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e_testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
with:
payload: |
{
"GH_RUN_LINK": "https://github.com/ava-labs/extension-avalanche/actions/runs/${{ github.run_id }}",
"GH_RUN_LINK": "https://github.com/ava-labs/core-extension/actions/runs/${{ github.run_id }}",
"GH_RUN_STATUS": "PASSED",
"STATUS_EMOJI": ":white_check_mark:",
"TEST_RUN_TYPE": "Browser extension smoke tests are running against branch= ${{ github.head_ref }}",
Expand All @@ -129,7 +129,7 @@ jobs:
with:
payload: |
{
"GH_RUN_LINK": "https://github.com/ava-labs/extension-avalanche/actions/runs/${{ github.run_id }}",
"GH_RUN_LINK": "https://github.com/ava-labs/core-extension/actions/runs/${{ github.run_id }}",
"GH_RUN_STATUS": "FAILED",
"STATUS_EMOJI": ":alert:",
"TEST_RUN_TYPE": "Browser extension smoke tests are running against branch= ${{ github.head_ref }}",
Expand Down
2 changes: 1 addition & 1 deletion docs/03-Storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Core generates a random storage encryption key during onboarding. This encryptio

The encryption key is also stored encrypted in storage at rest using the password set by the user during onboarding. The password is hashed using `Scrypt KDF` from the `@noble/hashes/scrypt` library.

To check the exact implementations out, go here: [`src/background/services/storage/utils/crypto.ts`](https://github.com/ava-labs/extension-avalanche/blob/main/src/background/services/storage/utils/crypto.ts)
To check the exact implementations out, go here: [`src/background/services/storage/utils/crypto.ts`](https://github.com/ava-labs/core-extension/blob/main/src/background/services/storage/utils/crypto.ts)

## DOs and DON'Ts

Expand Down

0 comments on commit e10e7af

Please sign in to comment.