diff --git a/lib/client/src/client.rs b/lib/client/src/client.rs index b7d78091c..7a6b69512 100644 --- a/lib/client/src/client.rs +++ b/lib/client/src/client.rs @@ -1482,7 +1482,7 @@ impl MangoClient { ) -> anyhow::Result { TransactionBuilder { instructions, - address_lookup_tables: vec![], + address_lookup_tables: self.mango_address_lookup_tables().await?, payer: self.client.fee_payer.pubkey(), signers: vec![self.owner.clone(), self.client.fee_payer.clone()], config: self.client.transaction_builder_config, @@ -1497,7 +1497,7 @@ impl MangoClient { ) -> anyhow::Result { TransactionBuilder { instructions, - address_lookup_tables: vec![], + address_lookup_tables: self.mango_address_lookup_tables().await?, payer: self.client.fee_payer.pubkey(), signers: vec![self.client.fee_payer.clone()], config: self.client.transaction_builder_config,