From fa727378b9f80d74dee79fb932f19c7cc314c303 Mon Sep 17 00:00:00 2001 From: Guillermo Bescos Date: Sat, 16 Mar 2024 19:25:58 +0000 Subject: [PATCH] Cleanup --- staking/app/deploy/create_account_lookup_table.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/staking/app/deploy/create_account_lookup_table.ts b/staking/app/deploy/create_account_lookup_table.ts index f7662b8a..d3967bc8 100644 --- a/staking/app/deploy/create_account_lookup_table.ts +++ b/staking/app/deploy/create_account_lookup_table.ts @@ -63,7 +63,7 @@ async function initAddressLookupTable( .blockhash, }).compileToV0Message() ); - await provider.sendAndConfirm(createLookupTableTx, []); + await provider.sendAndConfirm(createLookupTableTx); return lookupTableAddress; }