fix account needed
This commit is contained in:
parent
ee5d1293b9
commit
dc528b3f9c
|
@ -42,7 +42,7 @@ impl DexEdgeIdentifier for GammaEdgeIdentifier {
|
|||
}
|
||||
|
||||
fn accounts_needed(&self) -> usize {
|
||||
13
|
||||
11
|
||||
}
|
||||
|
||||
fn as_any(&self) -> &dyn Any {
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue