Skip to content

Commit

Permalink
fix: replace signer in signature.test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
pablojhl committed Dec 17, 2024
1 parent 361b6ca commit 7a6dae5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client-vms/tests/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const PrivateKeyPerSuite = {
Payments: Env.nilChainPrivateKey0,
LeaderQuery: Env.nilChainPrivateKey1,
VmClient: Env.nilChainPrivateKey2,
// Env.nilChainPrivateKey3,
Signatures: Env.nilChainPrivateKey3,
// Env.nilChainPrivateKey4,
// Env.nilChainPrivateKey5,
// Env.nilChainPrivateKey6,
Expand Down
2 changes: 1 addition & 1 deletion client-vms/tests/signature.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describe("Signature", () => {
let client: VmClient;

beforeAll(async () => {
const signer = await createSignerFromKey(PrivateKeyPerSuite.VmClient);
const signer = await createSignerFromKey(PrivateKeyPerSuite.Signatures);
digestMessage = sha256("A deep message with a deep number: 42");

client = await new VmClientBuilder()
Expand Down

0 comments on commit 7a6dae5

Please sign in to comment.