Skip to content

Commit

Permalink
change the name of account id variable
Browse files Browse the repository at this point in the history
  • Loading branch information
maksimKrukovich committed Mar 28, 2024
1 parent f8a03f3 commit 3acf31e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
env:
RPC_URL: ${{ secrets.RPC_URL }}
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
ACCOUNT_ID: ${{ vars.ACCOUNT_ID }}
ACCOUNT_ID: ${{ secrets.ACCOUNT_ID }}

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
env:
RPC_URL: ${{ secrets.RPC_URL }}
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
ACCOUNT_ID: ${{ vars.ACCOUNT_ID }}
ACCOUNT_ID: ${{ secrets.ACCOUNT_ID }}

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
env:
RPC_URL: ${{ secrets.RPC_URL }}
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
ACCOUNT_ID: ${{ vars.ACCOUNT_ID }}
ACCOUNT_ID: ${{ secrets.ACCOUNT_ID }}

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion test/vault.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe("Vault", function () {
let client = Client.forTestnet();

const operatorPrKey = PrivateKey.fromStringECDSA(process.env.PRIVATE_KEY || '');
const operatorAccountId = AccountId.fromString(process.env.OPERATOR_ID || '');
const operatorAccountId = AccountId.fromString(process.env.ACCOUNT_ID || '');

client.setOperator(
operatorAccountId,
Expand Down

0 comments on commit 3acf31e

Please sign in to comment.