Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/src/e2e/reward.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import {
bobAddress,
carolAddress,
daveAddress,
faucetAccointId,
faucetAccountId,
faucetAddress
} from "../helper/constants";
import CodeChain from "../helper/spawn";
Expand Down
2 changes: 1 addition & 1 deletion test/src/e2e/verification.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { expect } from "chai";
import "mocha";
import {
aliceAddress,
faucetAccointId,
faucetAccountId,
faucetAddress,
faucetSecret
} from "../helper/constants";
Expand Down
4 changes: 2 additions & 2 deletions test/src/helper/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ import { SDK } from "../sdk";

export const faucetSecret =
"ede1d4ccb4ec9a8bbbae9a13db3f4a7b56ea04189be86ac3a6a439d9a0a1addd";
export const faucetAccointId = SDK.util.getAccountIdFromPrivate(faucetSecret); // 6fe64ffa3a46c074226457c90ccb32dc06ccced1
export const faucetAccountId = SDK.util.getAccountIdFromPrivate(faucetSecret); // 6fe64ffa3a46c074226457c90ccb32dc06ccced1
export const faucetAddress = SDK.Core.classes.PlatformAddress.fromAccountId(
faucetAccointId,
faucetAccountId,
{ networkId: "tc" }
); // tccq9h7vnl68frvqapzv3tujrxtxtwqdnxw6yamrrgd

Expand Down