Skip to content

Commit

Permalink
fix requested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
aburkut committed Dec 12, 2024
1 parent 9cfb5e9 commit 428ccfc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/dex/cables/cables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -388,9 +388,8 @@ export class Cables extends SimpleExchange implements IDex<any> {
return this.tokensMap[this.normalizeAddress(address)];
}

getPoolIdentifier(srcAddress: Address, destAddress: Address, mm?: string) {
getPoolIdentifier(srcAddress: Address, destAddress: Address) {
return `${this.dexKey}_${srcAddress}_${destAddress}`.toLowerCase();
return `${this.dexKey}_${srcAddress}_${destAddress}_${mm}`.toLowerCase();
}

async getPoolIdentifiers(
Expand Down

0 comments on commit 428ccfc

Please sign in to comment.