From 07a447c998f79d1c63558562985cd6d5eb5aa8ce Mon Sep 17 00:00:00 2001 From: Kiran Babu Muddam Date: Mon, 1 Jul 2024 19:52:37 +0530 Subject: [PATCH] change type from Pubkey to String for QuoteConfig dexes & excludeDexes (#16) change type from Pubkey to String --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 2e6e19d..3cedde1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -221,8 +221,8 @@ impl fmt::Display for SwapMode { pub struct QuoteConfig { pub slippage_bps: Option, pub swap_mode: Option, - pub dexes: Option>, - pub exclude_dexes: Option>, + pub dexes: Option>, + pub exclude_dexes: Option>, pub only_direct_routes: bool, pub as_legacy_transaction: Option, pub platform_fee_bps: Option,