fix account needed

This commit is contained in:
Sushant Chandla 2024-10-16 20:32:31 +05:30
parent ee5d1293b9
commit dc528b3f9c
2 changed files with 4 additions and 1 deletions

View File

@ -42,7 +42,7 @@ impl DexEdgeIdentifier for GammaEdgeIdentifier {
}
fn accounts_needed(&self) -> usize {
13
11
}
fn as_any(&self) -> &dyn Any {

View File

@ -117,6 +117,9 @@ pub trait DexEdgeIdentifier: Sync + Send {
fn desc(&self) -> String;
fn input_mint(&self) -> Pubkey;
fn output_mint(&self) -> Pubkey;
/// This should count all account needed to make a swap, excluding:
/// - user wallet address
/// - user output ATA
fn accounts_needed(&self) -> usize;
fn as_any(&self) -> &dyn Any;
}