You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// TODO: this loop will be slow and invoke many rpc calls if there are many lookup accounts. either parallelize this extraction or limit number of lookup accounts
287
-
for i in0..ix.accounts.len(){
288
-
let account_key = self.extract_account(tx, ix, i).await?;
// TODO: this loop will be slow and invoke many rpc calls if there are many lookup accounts. either parallelize this extraction or limit number of lookup accounts
284
+
for i in0..ix.accounts.len(){
285
+
let account_key = self.extract_account(tx, ix, i).await?;
0 commit comments