From eae742b7fca0c8d7bd2f158d3317cba8a4b79cf9 Mon Sep 17 00:00:00 2001 From: venilinvasilev Date: Fri, 31 Jan 2025 15:23:07 +0200 Subject: [PATCH] refactor(tck): replace deprecated setKey with setKeyWithoutAlias Updated a remaining deprecated reference to `setKey(Key)` in tck Signed-off-by: venilinvasilev --- tck/methods/account.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tck/methods/account.ts b/tck/methods/account.ts index 836da9cc9..99adfb2e2 100644 --- a/tck/methods/account.ts +++ b/tck/methods/account.ts @@ -39,7 +39,7 @@ export const createAccount = async ({ ); if (key != null) { - transaction.setKey(getKeyFromString(key)); + transaction.setKeyWithoutAlias(getKeyFromString(key)); } if (initialBalance != null) {